diff --git a/CHANGES.rst b/CHANGES.rst index a693e51e65..d65d8a2a15 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,26 @@ Changelog .. towncrier release notes start + +4.4.3 (2022-03-16) +Bugfixes +-------- + +- Update to the latest pulp_container release + `AAH-1373 `_ +- Make sure orphan_protection_time is not set to zero + `AAH-1384 `_ +- Prevent artifact removal from latest version when deleting images + `AAH-1389 `_ +- Fix intermittent 500 when pulling execution environments. + `AAH-1400 `_ +- Fix intermittent 500 when pushing execution environments. + `AAH-1411 `_ + + +---- + + 4.4.2 (2022-03-01) Bugfixes -------- diff --git a/CHANGES/1373.bugfix b/CHANGES/1373.bugfix deleted file mode 100644 index f68e0921e2..0000000000 --- a/CHANGES/1373.bugfix +++ /dev/null @@ -1 +0,0 @@ -Update to the latest pulp_container release \ No newline at end of file diff --git a/CHANGES/1384.bugfix b/CHANGES/1384.bugfix deleted file mode 100644 index a1bc3f98d4..0000000000 --- a/CHANGES/1384.bugfix +++ /dev/null @@ -1 +0,0 @@ -Make sure orphan_protection_time is not set to zero \ No newline at end of file diff --git a/CHANGES/1389.bugfix b/CHANGES/1389.bugfix deleted file mode 100644 index d6db486507..0000000000 --- a/CHANGES/1389.bugfix +++ /dev/null @@ -1 +0,0 @@ -Prevent artifact removal from latest version when deleting images diff --git a/CHANGES/1400.bugfix b/CHANGES/1400.bugfix deleted file mode 100644 index bc13394063..0000000000 --- a/CHANGES/1400.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix intermittent 500 when pulling execution environments. \ No newline at end of file diff --git a/CHANGES/1411.bugfix b/CHANGES/1411.bugfix deleted file mode 100644 index fd32842268..0000000000 --- a/CHANGES/1411.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix intermittent 500 when pushing execution environments. \ No newline at end of file diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index 0806c63a31..ce8f92b90b 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.4.2" +__version__ = "4.4.3" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index 7760d2e133..e558a20f73 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.4.2" + version = "4.4.3" def ready(self): super().ready() diff --git a/setup.cfg b/setup.cfg index a881cdea75..fe1f92c01f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.4.2 +current_version = 4.4.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 88d6e8f46d..b192172424 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools.command.sdist import sdist as _SDistCommand package_name = os.environ.get("GALAXY_NG_ALTERNATE_NAME", "galaxy-ng") -version = "4.4.2" +version = "4.4.3" class PrepareStaticCommand(Command):