diff --git a/CHANGES.rst b/CHANGES.rst index 962cbe7f58..4d758563ae 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,15 @@ Changelog .. towncrier release notes start +4.7.3 (2023-09-18) +================== + +No significant changes. + + +---- + + 4.7.2 (2023-09-14) ================== diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index 5b9906b850..a1e589fac7 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.7.2" +__version__ = "4.7.3" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index 70f859bbed..55b81376c4 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.7.2" + version = "4.7.3" python_package_name = "galaxy-ng" def ready(self): diff --git a/setup.cfg b/setup.cfg index 993241c81f..b168114299 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.7.2 +current_version = 4.7.3 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 24972e3748..15c7a52f6b 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.7.2" +version = "4.7.3" class PrepareStaticCommand(Command):