Skip to content

Commit

Permalink
Release 4.5.1 (#1426)
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
ShaiahWren authored Aug 22, 2022
1 parent 76d1f76 commit c7b0dde
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 9 deletions.
27 changes: 27 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,33 @@ Changelog

.. towncrier release notes start
4.5.1 (2022-08-22)
Features
--------

- Allow set of GALAXY_MINIMUM_PASSWORD_LENGTH for AUTH_PASSWORD_VALIDATORS
`AAH-1531 <https://issues.redhat.com/browse/AAH-1531>`_
- Add LDAP integration
`AAH-1593 <https://issues.redhat.com/browse/AAH-1593>`_


Bugfixes
--------

- Fix feature flags for signing
`AAH-1690 <https://issues.redhat.com/browse/AAH-1690>`_
- 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>`_


----


Features
--------
Expand Down
1 change: 0 additions & 1 deletion CHANGES/1531.feature

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1690.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/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.5.0"
__version__ = "4.5.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.5.0"
version = "4.5.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.5.0
current_version = 4.5.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 @@ -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.5.0"
version = "4.5.1"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit c7b0dde

Please sign in to comment.