Skip to content

Commit

Permalink
bump version to 4.6.6 (#1745)
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
jerabekjiri authored May 30, 2023
1 parent 51538a8 commit 632f48a
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 7 deletions.
17 changes: 17 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,23 @@ Changelog

.. towncrier release notes start
4.6.6 (2023-05-29)
==================

Bugfixes
--------

- Ensure that container deletion removes associated artifacts and content.
`AAH-2024 <https://issues.redhat.com/browse/AAH-2024>`_
- Fix container registry auth when running with keycloak.
`AAH-2075 <https://issues.redhat.com/browse/AAH-2075>`_
- Fix container push update permission
`AAH-2327 <https://issues.redhat.com/browse/AAH-2327>`_


----


4.6.5 (2023-04-20)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/2024.bugfix

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2327.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.6.5"
__version__ = "4.6.6"

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.6.5"
version = "4.6.6"
python_package_name = "galaxy-ng"

def ready(self):
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.6.5
current_version = 4.6.6
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 @@ -13,7 +13,7 @@
from setuptools.command.sdist import sdist as _SDistCommand

package_name = os.environ.get("GALAXY_NG_ALTERNATE_NAME", "galaxy-ng")
version = "4.6.5"
version = "4.6.6"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit 632f48a

Please sign in to comment.