diff --git a/CITATION.cff b/CITATION.cff index 1c239866a6..96af1692cc 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -51,6 +51,6 @@ authors: - family-names: Theisen given-names: Merel title: Kedro -version: 0.19.1 -date-released: 2023-12-13 +version: 0.19.2 +date-released: 2024-01-22 url: https://github.com/kedro-org/kedro diff --git a/RELEASE.md b/RELEASE.md index 1f41509f3f..8217d60407 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,7 +1,17 @@ -# Upcoming Release 0.19.2 +# Upcoming Release 0.19.3 ## Major features and improvements +## Bug fixes and other changes + +## Breaking changes to the API + +## Documentation changes + +## Community contributions + +# Release 0.19.2 + ## Bug fixes and other changes * Removed example pipeline requirements when examples are not selected in `tools`. * Allowed modern versions of JupyterLab and Jupyter Notebooks. @@ -18,8 +28,6 @@ * Added documentation about `bootstrap_project` and `configure_project`. * Added documentation about `kedro run` and hook execution order. -## Community contributions - # Release 0.19.1 ## Bug fixes and other changes diff --git a/docs/source/development/commands_reference.md b/docs/source/development/commands_reference.md index ca478e863a..1add257ac2 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.1 +v0.19.2 Kedro is a Python framework for creating reproducible, maintainable diff --git a/docs/source/robots.txt b/docs/source/robots.txt index 3c96089460..a2601e6971 100644 --- a/docs/source/robots.txt +++ b/docs/source/robots.txt @@ -2,6 +2,7 @@ User-agent: * Disallow: / Allow: /en/stable/ Allow: /en/latest/ +Allow: /en/0.19.2/ Allow: /en/0.19.1/ Allow: /en/0.19.0/ Allow: /en/0.18.5/ diff --git a/kedro/__init__.py b/kedro/__init__.py index 4406f54074..a538fcbecc 100644 --- a/kedro/__init__.py +++ b/kedro/__init__.py @@ -6,7 +6,7 @@ import sys import warnings -__version__ = "0.19.1" +__version__ = "0.19.2" class KedroDeprecationWarning(DeprecationWarning):