Skip to content

Commit

Permalink
Release 4.4.3 (#1178)
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
newswangerd authored Mar 16, 2022
1 parent 2d5f9ff commit c0fd63b
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 9 deletions.
20 changes: 20 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://issues.redhat.com/browse/AAH-1373>`_
- Make sure orphan_protection_time is not set to zero
`AAH-1384 <https://issues.redhat.com/browse/AAH-1384>`_
- Prevent artifact removal from latest version when deleting images
`AAH-1389 <https://issues.redhat.com/browse/AAH-1389>`_
- Fix intermittent 500 when pulling execution environments.
`AAH-1400 <https://issues.redhat.com/browse/AAH-1400>`_
- Fix intermittent 500 when pushing execution environments.
`AAH-1411 <https://issues.redhat.com/browse/AAH-1411>`_


----


4.4.2 (2022-03-01)
Bugfixes
--------
Expand Down
1 change: 0 additions & 1 deletion CHANGES/1373.bugfix

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

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.2"
__version__ = "4.4.3"

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.2"
version = "4.4.3"

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.2
current_version = 4.4.3
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.2"
version = "4.4.3"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit c0fd63b

Please sign in to comment.