From c0fd63bfd17dde4ce8cef18062dbb338323dbcd1 Mon Sep 17 00:00:00 2001 From: David Newswanger Date: Wed, 16 Mar 2022 16:46:51 -0400 Subject: [PATCH] Release 4.4.3 (#1178) No-Issue --- CHANGES.rst | 20 ++++++++++++++++++++ CHANGES/1373.bugfix | 1 - CHANGES/1384.bugfix | 1 - CHANGES/1389.bugfix | 1 - CHANGES/1400.bugfix | 1 - CHANGES/1411.bugfix | 1 - galaxy_ng/__init__.py | 2 +- galaxy_ng/app/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 10 files changed, 24 insertions(+), 9 deletions(-) delete mode 100644 CHANGES/1373.bugfix delete mode 100644 CHANGES/1384.bugfix delete mode 100644 CHANGES/1389.bugfix delete mode 100644 CHANGES/1400.bugfix delete mode 100644 CHANGES/1411.bugfix 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):