diff --git a/CHANGES.rst b/CHANGES.rst index b4ce32561c..88cef718ba 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,19 @@ Changelog .. towncrier release notes start +4.5.4 (2022-11-21) +================== + +Bugfixes +-------- + +- Add option to customize ldap group params + `AAH-1957 `_ + + +---- + + 4.5.3 (2022-09-20) Bugfixes -------- diff --git a/CHANGES/1957.bugfix b/CHANGES/1957.bugfix deleted file mode 100644 index c8d5f87925..0000000000 --- a/CHANGES/1957.bugfix +++ /dev/null @@ -1 +0,0 @@ -Add option to customize ldap group params diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index 0c7090e44b..117b574717 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.5.3" +__version__ = "4.5.4" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index 0cdd76016e..371b3d946a 100644 --- a/galaxy_ng/app/__init__.py +++ b/galaxy_ng/app/__init__.py @@ -6,7 +6,7 @@ class PulpGalaxyPluginAppConfig(PulpPluginAppConfig): name = "galaxy_ng.app" label = "galaxy" - version = "4.5.3" + version = "4.5.4" def ready(self): super().ready() diff --git a/setup.cfg b/setup.cfg index 9e7343477f..2347ac77a9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.5.3 +current_version = 4.5.4 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+))?((?P\d+))? diff --git a/setup.py b/setup.py index 05e6732242..e1a1ee9626 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ from setuptools.command.sdist import sdist as _SDistCommand package_name = os.environ.get("GALAXY_NG_ALTERNATE_NAME", "galaxy-ng") -version = "4.5.3" +version = "4.5.4" class PrepareStaticCommand(Command):