From 0f2e42a8064d647acac010041cc12d7887fea4ce Mon Sep 17 00:00:00 2001 From: "Laurent Mignon (ACSONE)" Date: Fri, 28 Jul 2023 11:55:27 +0200 Subject: [PATCH] 1.2.0 --- .bumpversion.cfg | 2 +- HISTORY.rst | 11 +++++++++++ news/before_hook.feature | 3 --- src/extendable/version.py | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 news/before_hook.feature diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 252490a..c0716f2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0 +current_version = 1.2.0 [bumpversion:file:.bumpversion.cfg] diff --git a/HISTORY.rst b/HISTORY.rst index 64312a2..1fe5b6c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,14 @@ +1.2.0 (2023-07-28) +================== + +Features +-------- + +- Add a `before_init_registry` hook method into the `ExtendableRegistryListener` class. + This methods allows you to udpate the list of modules to load into the registry if + you need to do so. (`#before_hook `_) + + 1.1.0 (2023-07-15) ================== diff --git a/news/before_hook.feature b/news/before_hook.feature deleted file mode 100644 index d80fe18..0000000 --- a/news/before_hook.feature +++ /dev/null @@ -1,3 +0,0 @@ -Add a `before_init_registry` hook method into the `ExtendableRegistryListener` class. -This methods allows you to udpate the list of modules to load into the registry if -you need to do so. diff --git a/src/extendable/version.py b/src/extendable/version.py index 6849410..c68196d 100644 --- a/src/extendable/version.py +++ b/src/extendable/version.py @@ -1 +1 @@ -__version__ = "1.1.0" +__version__ = "1.2.0"