Skip to content

Commit

Permalink
Release 4.4.1 (#1094)
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
himdel authored Jan 6, 2022
1 parent d689c17 commit 5e2e980
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 9 deletions.
21 changes: 21 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://issues.redhat.com/browse/AAH-1094>`_
- Upgrade to pulp-container 2.8.3 to fix azure and S3 storage backends.
`AAH-1188 <https://issues.redhat.com/browse/AAH-1188>`_
- Fix a bug preventing users upgrading from 1.2 to 2.1 from downloading content from the rh-certified repository.
`AAH-1200 <https://issues.redhat.com/browse/AAH-1200>`_


Misc
----

- `AAH-804 <https://issues.redhat.com/browse/AAH-804>`_, `AAH-1015 <https://issues.redhat.com/browse/AAH-1015>`_


----


4.4.0 (2021-11-18)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/1015.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1094.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1188.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1200.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/804.misc

This file was deleted.

2 changes: 1 addition & 1 deletion galaxy_ng/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "4.4.0"
__version__ = "4.4.1"

default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig"
2 changes: 1 addition & 1 deletion galaxy_ng/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.4.0
current_version = 4.4.1
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+))?((?P<build>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 5e2e980

Please sign in to comment.