Skip to content

Commit

Permalink
release 4.4.4 (#1386)
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
ShaiahWren authored Jul 26, 2022
1 parent 554381e commit e57d145
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 11 deletions.
26 changes: 26 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,32 @@ Changelog

.. towncrier release notes start
4.4.4 (2022-07-26)
Bugfixes
--------

- Update pulpcore.
`AAH-1202 <https://issues.redhat.com/browse/AAH-1202>`_
- Combine copy and remove tasks into single task
`AAH-1349 <https://issues.redhat.com/browse/AAH-1349>`_
- Ensure that container remotes exclude source images by default to prevent networking errors when syncing.
`AAH-1557 <https://issues.redhat.com/browse/AAH-1557>`_
- Use v3/excludes to exclude content from sync
`AAH-1583 <https://issues.redhat.com/browse/AAH-1583>`_
- Fix persisting artifacts in collection deletion
`AAH-1749 <https://issues.redhat.com/browse/AAH-1749>`_
- Forbid user with change_user perms to update superuser
`AAH-1791 <https://issues.redhat.com/browse/AAH-1791>`_


Misc
----

- `AAH-1737 <https://issues.redhat.com/browse/AAH-1737>`_


----


4.4.3 (2022-03-16)
Bugfixes
Expand Down
1 change: 0 additions & 1 deletion CHANGES/1202.bugfix

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1791.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.3"
__version__ = "4.4.4"

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.3"
version = "4.4.4"

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.3
current_version = 4.4.4
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.3"
version = "4.4.4"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit e57d145

Please sign in to comment.