From 91468e64ea6f1fc4d51fe6313d738476189dd74a Mon Sep 17 00:00:00 2001 From: "L. R. Couto" <57910428+lrcouto@users.noreply.github.com> Date: Thu, 10 Oct 2024 15:57:08 -0300 Subject: [PATCH] Bump up version to 0.19.9 (#4219) * Bump up version to 0.19.9 Signed-off-by: Laura Couto * Add placeholders to release.md Signed-off-by: Laura Couto * Update citation.cff release date Signed-off-by: Laura Couto --------- Signed-off-by: Laura Couto Signed-off-by: L. R. Couto <57910428+lrcouto@users.noreply.github.com> --- CITATION.cff | 4 ++-- RELEASE.md | 9 +++++++++ kedro/__init__.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 3f57feb252..371e42a1b0 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -44,6 +44,6 @@ authors: - family-names: Brugman given-names: Simon title: Kedro -version: 0.19.8 -date-released: 2024-08-20 +version: 0.19.9 +date-released: 2024-10-10 url: https://github.com/kedro-org/kedro diff --git a/RELEASE.md b/RELEASE.md index 5447340938..59cace8a36 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,14 @@ # Upcoming Release +## Major features and improvements +## Bug fixes and other changes +## Breaking changes to the API +## Documentation changes +## Community contributions + + +# Release 0.19.9 + ## Major features and improvements * Dropped Python 3.8 support. * Implemented `KedroDataCatalog` repeating `DataCatalog` functionality with a few API enhancements: diff --git a/kedro/__init__.py b/kedro/__init__.py index b49d498fc9..00ebebc5a7 100644 --- a/kedro/__init__.py +++ b/kedro/__init__.py @@ -6,7 +6,7 @@ import sys import warnings -__version__ = "0.19.8" +__version__ = "0.19.9" class KedroDeprecationWarning(DeprecationWarning):