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):