File tree 6 files changed +14
-5
lines changed
6 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 4.10.0
2
+ current_version = 4.10.1
3
3
commit = False
4
4
tag = False
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Original file line number Diff line number Diff line change
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
+
1
10
## 4.10.0 (2024-09-19) {: #4 .10.0 }
2
11
3
12
#### Bugfixes
Original file line number Diff line number Diff line change 3
3
4
4
sys .modules .setdefault ("automated_logging" , automated_logging )
5
5
6
- __version__ = "4.10.0 "
6
+ __version__ = "4.10.1 "
7
7
8
8
default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class PulpGalaxyPluginAppConfig(PulpPluginAppConfig):
10
10
11
11
name = "galaxy_ng.app"
12
12
label = "galaxy"
13
- version = "4.10.0 "
13
+ version = "4.10.1 "
14
14
python_package_name = "galaxy-ng"
15
15
16
16
def ready (self ):
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 4.10.0
2
+ current_version = 4.10.1
3
3
commit = False
4
4
tag = False
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+))?((?P<build>\d+))?
Original file line number Diff line number Diff line change 13
13
from setuptools .command .sdist import sdist as _SDistCommand
14
14
15
15
package_name = os .environ .get ("GALAXY_NG_ALTERNATE_NAME" , "galaxy-ng" )
16
- version = "4.10.0 "
16
+ version = "4.10.1 "
17
17
18
18
19
19
class PrepareStaticCommand (Command ):
You can’t perform that action at this time.
0 commit comments