Skip to content

Commit

Permalink
Release 4.10.1 (#2330)
Browse files Browse the repository at this point in the history
* Release 4.10.1

No-Issue


Signed-off-by: James Tanner <[email protected]>
  • Loading branch information
jctanner authored Oct 23, 2024
1 parent fe1dd1b commit 68b9098
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.10.0
current_version = 4.10.1
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 4.10.1 (2024-10-23) {: #4.10.1 }

#### Bugfixes

- Merge unique auth classes in the keycloak dynaconf hook
[#2271](https://github.com/ansible/galaxy_ng/pull/2271)
- Force galaxy session auth as the first auth class.
[#2279](https://github.com/ansible/galaxy_ng/pull/2279)

## 4.10.0 (2024-09-19) {: #4.10.0 }

#### Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion galaxy_ng/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

sys.modules.setdefault("automated_logging", automated_logging)

__version__ = "4.10.0"
__version__ = "4.10.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 @@ -10,7 +10,7 @@ class PulpGalaxyPluginAppConfig(PulpPluginAppConfig):

name = "galaxy_ng.app"
label = "galaxy"
version = "4.10.0"
version = "4.10.1"
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.10.0
current_version = 4.10.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.10.0"
version = "4.10.1"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit 68b9098

Please sign in to comment.