From 5e2e9800c348a24bcd5af5c218bd60ca99696cd0 Mon Sep 17 00:00:00 2001 From: Martin Hradil Date: Thu, 6 Jan 2022 19:50:20 +0100 Subject: [PATCH] Release 4.4.1 (#1094) No-Issue --- CHANGES.rst | 21 +++++++++++++++++++++ CHANGES/1015.misc | 1 - CHANGES/1094.bugfix | 1 - CHANGES/1188.bugfix | 1 - CHANGES/1200.bugfix | 1 - CHANGES/804.misc | 1 - galaxy_ng/__init__.py | 2 +- galaxy_ng/app/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 10 files changed, 25 insertions(+), 9 deletions(-) delete mode 100644 CHANGES/1015.misc delete mode 100644 CHANGES/1094.bugfix delete mode 100644 CHANGES/1188.bugfix delete mode 100644 CHANGES/1200.bugfix delete mode 100644 CHANGES/804.misc diff --git a/CHANGES.rst b/CHANGES.rst index 1ebe7c7f01..9c91eca173 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,27 @@ Changelog .. towncrier release notes start +4.4.1 (2022-01-06) +Bugfixes +-------- + +- Remote registry sync status not shown on registry page + `AAH-1094 `_ +- Upgrade to pulp-container 2.8.3 to fix azure and S3 storage backends. + `AAH-1188 `_ +- Fix a bug preventing users upgrading from 1.2 to 2.1 from downloading content from the rh-certified repository. + `AAH-1200 `_ + + +Misc +---- + +- `AAH-804 `_, `AAH-1015 `_ + + +---- + + 4.4.0 (2021-11-18) ================== diff --git a/CHANGES/1015.misc b/CHANGES/1015.misc deleted file mode 100644 index 8ec99a6166..0000000000 --- a/CHANGES/1015.misc +++ /dev/null @@ -1 +0,0 @@ -Make functional test URL and PASSWORD customizable diff --git a/CHANGES/1094.bugfix b/CHANGES/1094.bugfix deleted file mode 100644 index 8126897acf..0000000000 --- a/CHANGES/1094.bugfix +++ /dev/null @@ -1 +0,0 @@ -Remote registry sync status not shown on registry page \ No newline at end of file diff --git a/CHANGES/1188.bugfix b/CHANGES/1188.bugfix deleted file mode 100644 index 91274ce929..0000000000 --- a/CHANGES/1188.bugfix +++ /dev/null @@ -1 +0,0 @@ -Upgrade to pulp-container 2.8.3 to fix azure and S3 storage backends. \ No newline at end of file diff --git a/CHANGES/1200.bugfix b/CHANGES/1200.bugfix deleted file mode 100644 index 6323f8be48..0000000000 --- a/CHANGES/1200.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix a bug preventing users upgrading from 1.2 to 2.1 from downloading content from the rh-certified repository. \ No newline at end of file diff --git a/CHANGES/804.misc b/CHANGES/804.misc deleted file mode 100644 index a28e132680..0000000000 --- a/CHANGES/804.misc +++ /dev/null @@ -1 +0,0 @@ -enable lint-po on gettext *.po files diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index 66280cb31a..e15697a768 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.4.0" +__version__ = "4.4.1" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index 4b7a6a97a9..29fc27b8f5 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.0" + version = "4.4.1" def ready(self): super().ready() diff --git a/setup.cfg b/setup.cfg index 9ba914fab2..9c12b79128 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.4.0 +current_version = 4.4.1 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 a004587f19..d726a99f34 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.0" +version = "4.4.1" class PrepareStaticCommand(Command):