Skip to content

Commit 68b9098

Browse files
authored
Release 4.10.1 (#2330)
* Release 4.10.1 No-Issue Signed-off-by: James Tanner <[email protected]>
1 parent fe1dd1b commit 68b9098

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.10.0
2+
current_version = 4.10.1
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?

CHANGES.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 4.10.1 (2024-10-23) {: #4.10.1 }
2+
3+
#### Bugfixes
4+
5+
- Merge unique auth classes in the keycloak dynaconf hook
6+
[#2271](https://github.com/ansible/galaxy_ng/pull/2271)
7+
- Force galaxy session auth as the first auth class.
8+
[#2279](https://github.com/ansible/galaxy_ng/pull/2279)
9+
110
## 4.10.0 (2024-09-19) {: #4.10.0 }
211

312
#### Bugfixes

galaxy_ng/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

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

6-
__version__ = "4.10.0"
6+
__version__ = "4.10.1"
77

88
default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig"

galaxy_ng/app/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class PulpGalaxyPluginAppConfig(PulpPluginAppConfig):
1010

1111
name = "galaxy_ng.app"
1212
label = "galaxy"
13-
version = "4.10.0"
13+
version = "4.10.1"
1414
python_package_name = "galaxy-ng"
1515

1616
def ready(self):

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.10.0
2+
current_version = 4.10.1
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+))?((?P<build>\d+))?

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from setuptools.command.sdist import sdist as _SDistCommand
1414

1515
package_name = os.environ.get("GALAXY_NG_ALTERNATE_NAME", "galaxy-ng")
16-
version = "4.10.0"
16+
version = "4.10.1"
1717

1818

1919
class PrepareStaticCommand(Command):

0 commit comments

Comments
 (0)