diff --git a/CHANGES.rst b/CHANGES.rst index d65d8a2a15..9fa37a1b69 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,32 @@ Changelog .. towncrier release notes start +4.4.4 (2022-07-26) +Bugfixes +-------- + +- Update pulpcore. + `AAH-1202 `_ +- Combine copy and remove tasks into single task + `AAH-1349 `_ +- Ensure that container remotes exclude source images by default to prevent networking errors when syncing. + `AAH-1557 `_ +- Use v3/excludes to exclude content from sync + `AAH-1583 `_ +- Fix persisting artifacts in collection deletion + `AAH-1749 `_ +- Forbid user with change_user perms to update superuser + `AAH-1791 `_ + + +Misc +---- + +- `AAH-1737 `_ + + +---- + 4.4.3 (2022-03-16) Bugfixes diff --git a/CHANGES/1202.bugfix b/CHANGES/1202.bugfix deleted file mode 100644 index c8fce4e4ff..0000000000 --- a/CHANGES/1202.bugfix +++ /dev/null @@ -1 +0,0 @@ -Update pulpcore. \ No newline at end of file diff --git a/CHANGES/1349.bugfix b/CHANGES/1349.bugfix deleted file mode 100644 index 5647699950..0000000000 --- a/CHANGES/1349.bugfix +++ /dev/null @@ -1 +0,0 @@ -Combine copy and remove tasks into single task diff --git a/CHANGES/1557.bugfix b/CHANGES/1557.bugfix deleted file mode 100644 index 7c8f507400..0000000000 --- a/CHANGES/1557.bugfix +++ /dev/null @@ -1 +0,0 @@ -Ensure that container remotes exclude source images by default to prevent networking errors when syncing. \ No newline at end of file diff --git a/CHANGES/1583.bugfix b/CHANGES/1583.bugfix deleted file mode 100644 index 31ced311cd..0000000000 --- a/CHANGES/1583.bugfix +++ /dev/null @@ -1 +0,0 @@ -Use v3/excludes to exclude content from sync diff --git a/CHANGES/1737.misc b/CHANGES/1737.misc deleted file mode 100644 index b335d0c8e2..0000000000 --- a/CHANGES/1737.misc +++ /dev/null @@ -1 +0,0 @@ -Update filter for indexing EEs from catalog.redhat.com \ No newline at end of file diff --git a/CHANGES/1749.bugfix b/CHANGES/1749.bugfix deleted file mode 100644 index 7e4a823614..0000000000 --- a/CHANGES/1749.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix persisting artifacts in collection deletion diff --git a/CHANGES/1791.bugfix b/CHANGES/1791.bugfix deleted file mode 100644 index 6e0970a090..0000000000 --- a/CHANGES/1791.bugfix +++ /dev/null @@ -1 +0,0 @@ -Forbid user with change_user perms to update superuser diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index ce8f92b90b..28385d24f1 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.4.3" +__version__ = "4.4.4" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index e558a20f73..609c8b3001 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.3" + version = "4.4.4" def ready(self): super().ready() diff --git a/setup.cfg b/setup.cfg index fe1f92c01f..0443ce0938 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.4.3 +current_version = 4.4.4 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 670e6a25ea..5677e770e6 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.3" +version = "4.4.4" class PrepareStaticCommand(Command):