From 42f7a9fb6568d7ed1203cc924ef8d1532278f7fa Mon Sep 17 00:00:00 2001 From: Ralf Grubenmann Date: Fri, 22 Jul 2022 10:02:55 +0200 Subject: [PATCH] chore: release v1.6.0 --- CHANGES.rst | 38 +++++++++++++++++++++++++++++++ helm-chart/renku-core/Chart.yaml | 2 +- helm-chart/renku-core/values.yaml | 2 +- renku/version.py | 2 +- 4 files changed, 41 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index a5e93aac98..392911e213 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -18,6 +18,44 @@ Changes ======= +`1.6.0 `__ (2022-07-22) +------------------------------------------------------------------------------------------------------- + +Bug Fixes +~~~~~~~~~ + +- **cli:** fix merge tool committing more than just .gitattributes + (`#3013 `__) + (`3905d78 `__) +- **cli:** fix merge tool not working with OOBuckets + (`#3023 `__) + (`71f0d4a `__) +- **cli:** prevent deletion of plans that are still used in composite plans + (`#2993 `__) + (`f013bb6 `__) +- **cli:** prevent removed plans from being used in workflow commands + (`#2998 `__) + (`493f4c5 `__) +- **core:** persist activity catalog in metadata + (`#2994 `__) + (`8ef503f `__) + +Features +~~~~~~~~ + +- **api:** add RDFGraph to API + (`#3031 `__) + (`b8784d5 `__) +- **cli:** inform users about ‘renku login’ in related errors + (`#3000 `__) + (`ec91b31 `__) +- **cli:** add option to skip metadata update when executing workflows + (`#3025 `__) + (`c89aba7 `__) +- **cli:** use existing remote image when starting sessions + (`#2991 `__) + (`b09805c `__) + `1.5.0 `__ (2022-07-04) ------------------------------------------------------------------------------------------------------- diff --git a/helm-chart/renku-core/Chart.yaml b/helm-chart/renku-core/Chart.yaml index 0da64336dd..aa876b613b 100644 --- a/helm-chart/renku-core/Chart.yaml +++ b/helm-chart/renku-core/Chart.yaml @@ -3,4 +3,4 @@ appVersion: "1.0" description: A Helm chart for Kubernetes name: renku-core icon: https://avatars0.githubusercontent.com/u/53332360?s=400&u=a4311d22842343604ef61a8c8a1e5793209a67e9&v=4 -version: 1.5.0 +version: 1.6.0 diff --git a/helm-chart/renku-core/values.yaml b/helm-chart/renku-core/values.yaml index 00817e5512..4ee11ba085 100644 --- a/helm-chart/renku-core/values.yaml +++ b/helm-chart/renku-core/values.yaml @@ -111,7 +111,7 @@ versions: fullnameOverride: "" image: repository: renku/renku-core - tag: "v1.5.0" + tag: "v1.6.0" pullPolicy: IfNotPresent v8: name: v8 diff --git a/renku/version.py b/renku/version.py index 3676497cd1..d588e4908a 100644 --- a/renku/version.py +++ b/renku/version.py @@ -24,7 +24,7 @@ except ImportError: from importlib_metadata import distribution # type: ignore -__version__ = "1.5.0" +__version__ = "1.6.0" __template_version__ = "0.3.1" __minimum_project_version__ = "1.2.0"