From 6d89acec1bfa8b576c4a2e0a86718652a44fbf0d Mon Sep 17 00:00:00 2001 From: "L. R. Couto" <57910428+lrcouto@users.noreply.github.com> Date: Wed, 29 Jan 2025 11:41:16 -0300 Subject: [PATCH] Bump version to 0.19.11 (#4447) * Bump version to 0.19.11 Signed-off-by: Laura Couto * Update version on commands reference doc file Signed-off-by: Laura Couto * Update CITATION.cff Co-authored-by: Merel Theisen <49397448+merelcht@users.noreply.github.com> Signed-off-by: L. R. Couto <57910428+lrcouto@users.noreply.github.com> * Remove redundant lines from release notes Signed-off-by: Laura Couto --------- Signed-off-by: Laura Couto Signed-off-by: L. R. Couto <57910428+lrcouto@users.noreply.github.com> Co-authored-by: Merel Theisen <49397448+merelcht@users.noreply.github.com> --- CITATION.cff | 4 ++-- RELEASE.md | 10 +++++++--- docs/source/development/commands_reference.md | 2 +- kedro/__init__.py | 2 +- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index e2b222ea7f..d46aae1b87 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -44,6 +44,6 @@ authors: - family-names: Brugman given-names: Simon title: Kedro -version: 0.19.10 -date-released: 2024-11-26 +version: 0.19.11 +date-released: 2025-01-29 url: https://github.com/kedro-org/kedro diff --git a/RELEASE.md b/RELEASE.md index ddc2e55beb..4cf8a52c54 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,12 @@ # Upcoming Release +## Major features and improvements +## Bug fixes and other changes +## Breaking changes to the API +## Documentation changes + +# Release 0.19.11 + ## Major features and improvements * Implemented `KedroDataCatalog.to_config()` method that converts the catalog instance into a configuration format suitable for serialization. * Improve OmegaConfigLoader performance. @@ -19,9 +26,6 @@ * Fixed `KedroDataCatalog` mutation after pipeline run. * Made `KedroDataCatalog._datasets` compatible with `DataCatalog._datasets`. -## Breaking changes to the API -## Documentation changes - ## Community contributions Many thanks to the following Kedroids for contributing PRs to this release: * [Hendrik Scherner](https://github.com/SchernHe) diff --git a/docs/source/development/commands_reference.md b/docs/source/development/commands_reference.md index a49f2de5c2..753415b762 100644 --- a/docs/source/development/commands_reference.md +++ b/docs/source/development/commands_reference.md @@ -109,7 +109,7 @@ Returns output similar to the following, depending on the version of Kedro used | |/ / _ \/ _` | '__/ _ \ | < __/ (_| | | | (_) | |_|\_\___|\__,_|_| \___/ -v0.19.10 +v0.19.11 Kedro is a Python framework for creating reproducible, maintainable diff --git a/kedro/__init__.py b/kedro/__init__.py index 4e42f039d8..560ab22389 100644 --- a/kedro/__init__.py +++ b/kedro/__init__.py @@ -13,7 +13,7 @@ import sys import warnings -__version__ = "0.19.10" +__version__ = "0.19.11" class KedroDeprecationWarning(DeprecationWarning):