Skip to content

Commit d58f20a

Browse files
chore: release v1.5.0
1 parent cb0e73d commit d58f20a

File tree

5 files changed

+35
-5
lines changed

5 files changed

+35
-5
lines changed

CHANGES.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,36 @@
1818
Changes
1919
=======
2020

21+
22+
`1.5.0 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.4.0...v1.5.0>`__ (2022-07-04)
23+
-------------------------------------------------------------------------------------------------------
24+
25+
Bug Fixes
26+
~~~~~~~~~
27+
28+
- **service:** correctly use project namespace when generating project id
29+
(`#2958 <https://github.com/SwissDataScienceCenter/renku-python/issues/2958>`__)
30+
(`6995098 <https://github.com/SwissDataScienceCenter/renku-python/commit/69950981bc51d252d1287c254a5c2ac2a352f665>`__)
31+
32+
Features
33+
~~~~~~~~
34+
35+
- **core:** allow partial updates on dataset and project edit
36+
(`#2949 <https://github.com/SwissDataScienceCenter/renku-python/issues/2949>`__)
37+
(`3daa1ec <https://github.com/SwissDataScienceCenter/renku-python/commit/3daa1ecdc803043dd7618ad7a3a1a6d3ca2897de>`__)
38+
- **dataset:** export to a local directory
39+
(`#2944 <https://github.com/SwissDataScienceCenter/renku-python/issues/2944>`__)
40+
(`9090869 <https://github.com/SwissDataScienceCenter/renku-python/commit/9090869692d0ba24e969ce6e43a2b360a074698f>`__)
41+
- **dataset:** filter ls-files by tag
42+
(`#2950 <https://github.com/SwissDataScienceCenter/renku-python/issues/2950>`__)
43+
(`73866f2 <https://github.com/SwissDataScienceCenter/renku-python/commit/73866f2f936fee8e037d068f64cd8ee5aa1c0a41>`__)
44+
- **service:** support chunked file uploads
45+
(`#2892 <https://github.com/SwissDataScienceCenter/renku-python/issues/2892>`__)
46+
(`610e88a <https://github.com/SwissDataScienceCenter/renku-python/commit/610e88ab50ab13b55fb89d9643a948b6d36daa0b>`__)
47+
- **workflow:** workflow revert command
48+
(`#2956 <https://github.com/SwissDataScienceCenter/renku-python/issues/2956>`__)
49+
(`cb0e73d <https://github.com/SwissDataScienceCenter/renku-python/commit/cb0e73d0016a344500d8829edcccd2982e929441>`__)
50+
2151
`1.4.0 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.3.1...v1.4.0>`__ (2022-06-10)
2252
-------------------------------------------------------------------------------------------------------
2353

DEVELOPING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ number.
247247
the version number in the header and to replace the `=` underline with `-`.
248248
- Proof-read the changelog and adjust messages so they make sense to third
249249
parties reading the changelog
250-
- Update the version in `helm-chart/renku-core/Chart.yaml` and `helm-chart/renku-core/values.yaml`
251-
(for `versions.latest.image.tag`).
250+
- Update the version in `helm-chart/renku-core/Chart.yaml`, `helm-chart/renku-core/values.yaml`
251+
(for `versions.latest.image.tag`), and `renku/version.py`.
252252
- Commit the changes to the release branch, with a message like "chore: release
253253
v1.2.3"
254254
- Push the release branch and create a PR **against master**. Wait for it to be

helm-chart/renku-core/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ appVersion: "1.0"
33
description: A Helm chart for Kubernetes
44
name: renku-core
55
icon: https://avatars0.githubusercontent.com/u/53332360?s=400&u=a4311d22842343604ef61a8c8a1e5793209a67e9&v=4
6-
version: 1.4.0
6+
version: 1.5.0

helm-chart/renku-core/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ versions:
111111
fullnameOverride: ""
112112
image:
113113
repository: renku/renku-core
114-
tag: "v1.4.0"
114+
tag: "v1.5.0"
115115
pullPolicy: IfNotPresent
116116
v8:
117117
name: v8

renku/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
except ImportError:
2525
from importlib_metadata import distribution # type: ignore
2626

27-
__version__ = "1.4.0"
27+
__version__ = "1.5.0"
2828
__template_version__ = "0.3.1"
2929
__minimum_project_version__ = "1.2.0"
3030

0 commit comments

Comments
 (0)