File tree Expand file tree Collapse file tree 4 files changed +20
-4
lines changed Expand file tree Collapse file tree 4 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 18
18
Changes
19
19
=======
20
20
21
+ `2.3.1 <https://github.com/SwissDataScienceCenter/renku-python/compare/v2.3.0...v2.3.1 >`__ (2023-03-10)
22
+ -------------------------------------------------------------------------------------------------------
23
+
24
+ Bug Fixes
25
+ ~~~~~~~~~
26
+
27
+ - **cli: ** set git credentials helper correctly on git clone
28
+ (`#3348 <https://github.com/SwissDataScienceCenter/renku-python/issues/3348 >`__)
29
+ (`ac21c32 <https://github.com/SwissDataScienceCenter/renku-python/commit/ac21c3266246f011ec0bfd785e53fd03a553eee4 >`__)
30
+ - **core: ** update template checksum when updating Dockerfile
31
+ (`#3351 <https://github.com/SwissDataScienceCenter/renku-python/issues/3351 >`__)
32
+ (`24407e5 <https://github.com/SwissDataScienceCenter/renku-python/commit/24407e5857faab0fe4d20883039f2a831977b15c >`__)
33
+ - **core: ** parallelize dataset add to improve performance
34
+ (`#3338 <https://github.com/SwissDataScienceCenter/renku-python/issues/3338 >`__)
35
+ (`85ab141 <https://github.com/SwissDataScienceCenter/renku-python/commit/85ab14199c83815f6d3a63fd6dc721638b3b4c95 >`__)
36
+
21
37
`2.3.0 <https://github.com/SwissDataScienceCenter/renku-python/compare/v2.2.0...v2.3.0 >`__ (2023-02-27)
22
38
-------------------------------------------------------------------------------------------------------
23
39
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ appVersion: "1.0"
3
3
description : A Helm chart for Kubernetes
4
4
name : renku-core
5
5
icon : https://avatars0.githubusercontent.com/u/53332360?s=400&u=a4311d22842343604ef61a8c8a1e5793209a67e9&v=4
6
- version : 2.3.0
6
+ version : 2.3.1
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ versions:
97
97
fullnameOverride : " "
98
98
image :
99
99
repository : renku/renku-core
100
- tag : " v2.3.0 "
100
+ tag : " v2.3.1 "
101
101
pullPolicy : IfNotPresent
102
102
v9 :
103
103
name : v9
@@ -106,7 +106,7 @@ versions:
106
106
fullnameOverride : " "
107
107
image :
108
108
repository : renku/renku-core
109
- tag : " v1.11.2 "
109
+ tag : " v1.11.3 "
110
110
pullPolicy : IfNotPresent
111
111
podSecurityContext :
112
112
runAsUser : 1000
Original file line number Diff line number Diff line change 25
25
from importlib_metadata import distribution , version # type: ignore
26
26
27
27
__version__ = version ("renku" )
28
- __template_version__ = "0.4.1 "
28
+ __template_version__ = "0.5.0 "
29
29
__minimum_project_version__ = "2.1.0"
30
30
31
31
You can’t perform that action at this time.
0 commit comments