Skip to content

Commit

Permalink
Release 4.6.4 (#1668)
Browse files Browse the repository at this point in the history
* bump version to 4.6.4
* update changelog
No-Issue
  • Loading branch information
jerabekjiri authored Apr 4, 2023
1 parent 2a68aeb commit d474eae
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 10 deletions.
30 changes: 30 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,36 @@ Changelog

.. towncrier release notes start
4.6.4 (2023-04-04)
==================

Features
--------

- Add version_range parameter to the _ui/v1/collection-versions/ endpoint.
`AAH-2018 <https://issues.redhat.com/browse/AAH-2018>`_
- Add GALAXY_LDAP_MIRROR_ONLY_EXISTING_GROUPS which configures LDAP to only add users into groups that already exist in the system.
`AAH-2112 <https://issues.redhat.com/browse/AAH-2112>`_


Bugfixes
--------

- Filtering deprecated EE from registry sync
`AAH-1958 <https://issues.redhat.com/browse/AAH-1958>`_
- Allow ldap.OPT_REFERRALS to be set
`AAH-2150 <https://issues.redhat.com/browse/AAH-2150>`_


Misc
----

- `AAH-2029 <https://issues.redhat.com/browse/AAH-2029>`_, `AAH-2137 <https://issues.redhat.com/browse/AAH-2137>`_


----


4.6.3 (2022-12-05)
==================

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2018.feature

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2112.feature

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2150.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.3"
__version__ = "4.6.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.6.3"
version = "4.6.4"
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.3
current_version = 4.6.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 @@ -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.3"
version = "4.6.4"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit d474eae

Please sign in to comment.