diff --git a/CHANGES.rst b/CHANGES.rst index 6262e3acbb..fc08754274 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,33 @@ Changelog .. towncrier release notes start +4.5.1 (2022-08-22) +Features +-------- + +- Allow set of GALAXY_MINIMUM_PASSWORD_LENGTH for AUTH_PASSWORD_VALIDATORS + `AAH-1531 `_ +- Add LDAP integration + `AAH-1593 `_ + + +Bugfixes +-------- + +- Fix feature flags for signing + `AAH-1690 `_ +- Forbid user with change_user perms to update superuser + `AAH-1791 `_ + + +Misc +---- + +- `AAH-1737 `_ + + +---- + Features -------- diff --git a/CHANGES/1531.feature b/CHANGES/1531.feature deleted file mode 100644 index 4ef65d5072..0000000000 --- a/CHANGES/1531.feature +++ /dev/null @@ -1 +0,0 @@ -Allow set of GALAXY_MINIMUM_PASSWORD_LENGTH for AUTH_PASSWORD_VALIDATORS diff --git a/CHANGES/1593.feature b/CHANGES/1593.feature deleted file mode 100644 index 573a78bc27..0000000000 --- a/CHANGES/1593.feature +++ /dev/null @@ -1 +0,0 @@ -Add LDAP integration diff --git a/CHANGES/1690.bugfix b/CHANGES/1690.bugfix deleted file mode 100644 index e9ffa343ae..0000000000 --- a/CHANGES/1690.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix feature flags for signing diff --git a/CHANGES/1737.misc b/CHANGES/1737.misc deleted file mode 100644 index b335d0c8e2..0000000000 --- a/CHANGES/1737.misc +++ /dev/null @@ -1 +0,0 @@ -Update filter for indexing EEs from catalog.redhat.com \ No newline at end of file diff --git a/CHANGES/1791.bugfix b/CHANGES/1791.bugfix deleted file mode 100644 index 6e0970a090..0000000000 --- a/CHANGES/1791.bugfix +++ /dev/null @@ -1 +0,0 @@ -Forbid user with change_user perms to update superuser diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index afcf6d2b5a..aa9cf4700e 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.5.0" +__version__ = "4.5.1" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index 6bb56b5b03..3dfb9c9a0d 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.0" + version = "4.5.1" def ready(self): super().ready() diff --git a/setup.cfg b/setup.cfg index 29adeecce1..235d1f7304 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.5.0 +current_version = 4.5.1 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 b65a2b5e67..d6352a00fb 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.0" +version = "4.5.1" class PrepareStaticCommand(Command):