diff --git a/CHANGES.rst b/CHANGES.rst index f58d1644eb..962cbe7f58 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,15 @@ Changelog .. towncrier release notes start +4.7.2 (2023-09-14) +================== + +No significant changes. + + +---- + + 4.7.1 (2023-05-29) ================== diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index 3e883f0cd8..5b9906b850 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.7.1" +__version__ = "4.7.2" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index 2f5ec2becc..70f859bbed 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.1" + version = "4.7.2" python_package_name = "galaxy-ng" def ready(self): diff --git a/setup.cfg b/setup.cfg index 471b82398e..993241c81f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.7.1 +current_version = 4.7.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 55b0791a59..24972e3748 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.1" +version = "4.7.2" class PrepareStaticCommand(Command):