From 1104f98e6c98ee6515855389a2640fb96e09d2e7 Mon Sep 17 00:00:00 2001 From: Laura Couto Date: Tue, 28 Jan 2025 11:51:46 -0300 Subject: [PATCH 1/4] Bump version to 0.19.11 Signed-off-by: Laura Couto --- CITATION.cff | 4 ++-- RELEASE.md | 7 +++++++ kedro/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index e2b222ea7f..a73d13fdf8 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-28 url: https://github.com/kedro-org/kedro diff --git a/RELEASE.md b/RELEASE.md index ddc2e55beb..9fb79e11b9 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. 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): From 7b9f6f8f443d5c1a8c61de727d2b2ae775acfc4e Mon Sep 17 00:00:00 2001 From: Laura Couto Date: Tue, 28 Jan 2025 14:41:11 -0300 Subject: [PATCH 2/4] Update version on commands reference doc file Signed-off-by: Laura Couto --- docs/source/development/commands_reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 303b24aff34890f91b007ddaff79012fe1cad03a Mon Sep 17 00:00:00 2001 From: "L. R. Couto" <57910428+lrcouto@users.noreply.github.com> Date: Wed, 29 Jan 2025 11:03:11 -0300 Subject: [PATCH 3/4] 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> --- CITATION.cff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CITATION.cff b/CITATION.cff index a73d13fdf8..d46aae1b87 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -45,5 +45,5 @@ authors: given-names: Simon title: Kedro version: 0.19.11 -date-released: 2025-01-28 +date-released: 2025-01-29 url: https://github.com/kedro-org/kedro From b2359b97106805befbed932183d705e96621b3f6 Mon Sep 17 00:00:00 2001 From: Laura Couto Date: Wed, 29 Jan 2025 11:06:48 -0300 Subject: [PATCH 4/4] Remove redundant lines from release notes Signed-off-by: Laura Couto --- RELEASE.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 9fb79e11b9..4cf8a52c54 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -26,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)