diff --git a/CITATION.cff b/CITATION.cff index 2e36019c42..323416efa6 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -48,6 +48,6 @@ authors: - family-names: Brugman given-names: Simon title: Kedro -version: 0.19.4 -date-released: 2024-04-17 +version: 0.19.5 +date-released: 2024-04-22 url: https://github.com/kedro-org/kedro diff --git a/RELEASE.md b/RELEASE.md index d572b729ab..8d2b98f0b9 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,4 @@ -# Upcoming Release 0.19.5 +# Upcoming Release 0.19.6 ## Major features and improvements @@ -7,10 +7,19 @@ ## Breaking changes to the API ## Documentation changes -* Updated the documentation for deploying a Kedro project with Astronomer Airflow. ## Community contributions + +# Release 0.19.5 + +## Bug fixes and other changes +* Fixed breaking import issue when working on a project with `kedro-viz` on python 3.8. + +## Documentation changes +* Updated the documentation for deploying a Kedro project with Astronomer Airflow. +* Used `kedro-sphinx-theme` for documentation. + # Release 0.19.4 ## Major features and improvements diff --git a/docs/source/development/commands_reference.md b/docs/source/development/commands_reference.md index df65023aa5..c09ea6d409 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.4 +v0.19.5 Kedro is a Python framework for creating reproducible, maintainable diff --git a/docs/source/robots.txt b/docs/source/robots.txt index 882390b101..a00ae25d65 100644 --- a/docs/source/robots.txt +++ b/docs/source/robots.txt @@ -1,6 +1,7 @@ User-agent: * Disallow: / Allow: /en/stable/ +Allow: /en/0.19.5/ Allow: /en/0.19.4/ Allow: /en/0.19.3/ Allow: /en/0.19.2/ diff --git a/kedro/__init__.py b/kedro/__init__.py index 216e530bbd..b63331fb8e 100644 --- a/kedro/__init__.py +++ b/kedro/__init__.py @@ -6,7 +6,7 @@ import sys import warnings -__version__ = "0.19.4" +__version__ = "0.19.5" class KedroDeprecationWarning(DeprecationWarning):