diff --git a/CHANGES.rst b/CHANGES.rst index 0fa1199d34..f06af80a74 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,19 @@ Changelog .. towncrier release notes start +4.9.2 (2024-04-18) +================== + +Bugfixes +-------- + +- Support SVG avatar image on namespaces + `AAH-2836 `_ +- Fixed issue where group members were also showing up as users in the Namespace owners list. + `AAH-3121 `_ + + +---- 4.9.1 (2024-01-30) ================== diff --git a/CHANGES/2836.bugfix b/CHANGES/2836.bugfix deleted file mode 100644 index ab10cfb81c..0000000000 --- a/CHANGES/2836.bugfix +++ /dev/null @@ -1 +0,0 @@ -Support SVG avatar image on namespaces diff --git a/CHANGES/3121.bugfix b/CHANGES/3121.bugfix deleted file mode 100644 index 66b9471a4e..0000000000 --- a/CHANGES/3121.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed issue where group members were also showing up as users in the Namespace owners list. diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index dfe22ca7c3..9abdede8ca 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -3,6 +3,6 @@ sys.modules.setdefault("automated_logging", automated_logging) -__version__ = "4.9.1" +__version__ = "4.9.2" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index cc0a8f3d87..80f6e75202 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.9.1" + version = "4.9.2" python_package_name = "galaxy-ng" def ready(self): diff --git a/setup.cfg b/setup.cfg index d92be41ec4..cdeb07478f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.9.1 +current_version = 4.9.2 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 c8da14a414..b1ad061b26 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.9.1" +version = "4.9.2" class PrepareStaticCommand(Command):