From e87d85ceca8f570237cff02bb7d6bd43b26e4bb3 Mon Sep 17 00:00:00 2001 From: Nok Date: Mon, 19 Aug 2024 18:18:05 +0000 Subject: [PATCH 1/3] Release 0.19.8 Signed-off-by: Nok --- CITATION.cff | 4 ++-- RELEASE.md | 11 ++++++++++- docs/source/development/commands_reference.md | 4 ++-- docs/source/robots.txt | 3 ++- kedro/__init__.py | 2 +- 5 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index df74d7372d..3f57feb252 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -44,6 +44,6 @@ authors: - family-names: Brugman given-names: Simon title: Kedro -version: 0.19.7 -date-released: 2024-08-01 +version: 0.19.8 +date-released: 2024-08-20 url: https://github.com/kedro-org/kedro diff --git a/RELEASE.md b/RELEASE.md index 25802d76f8..dff7f2fc7e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,12 @@ -# Upcoming Release 0.19.8 +# Upcoming Release + +## Major features and improvements +## Bug fixes and other changes +## Breaking changes to the API +## Documentation changes +## Community contributions + +# Release 0.19.8 ## Major features and improvements * Made default run entrypoint in `__main__.py` work in interactive environments such as IPyhon and Databricks. @@ -7,6 +15,7 @@ * Moved `_find_run_command()` and `_find_run_command_in_plugins()` from `__main__.py` in the project template to the framework itself. * Fixed a bug where `%load_node` breaks with multi-lines import statements. * Fixed a regression where `rich` mark up logs stop showing since 0.19.7. + ## Breaking changes to the API ## Documentation changes diff --git a/docs/source/development/commands_reference.md b/docs/source/development/commands_reference.md index 06e841479d..12a90371f7 100644 --- a/docs/source/development/commands_reference.md +++ b/docs/source/development/commands_reference.md @@ -109,14 +109,14 @@ Returns output similar to the following, depending on the version of Kedro used | |/ / _ \/ _` | '__/ _ \ | < __/ (_| | | | (_) | |_|\_\___|\__,_|_| \___/ -v0.19.7 +v0.19.8 Kedro is a Python framework for creating reproducible, maintainable and modular data science code. Installed plugins: -kedro_viz: 4.4.0 (hooks:global,line_magic) +kedro_viz: 9.2.0 (hooks:global,line_magic) ``` diff --git a/docs/source/robots.txt b/docs/source/robots.txt index e8527497df..44206cf205 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.8* Allow: /en/0.19.7* Allow: /en/0.19.6* Allow: /en/0.19.5* @@ -12,7 +13,7 @@ Allow: /en/0.19.0* Allow: /en/0.18.14* Allow: /en/0.17.7* Allow: /projects/kedro-viz/en/stable/ -Allow: /projects/kedro-datasets/en/kedro-datasets-3.0.0* +Allow: /projects/kedro-datasets/en/kedro-datasets-4.1.0* Allow: */sitemap.xml Sitemap: https://docs.kedro.org/sitemap.xml diff --git a/kedro/__init__.py b/kedro/__init__.py index a5cab8cf56..b49d498fc9 100644 --- a/kedro/__init__.py +++ b/kedro/__init__.py @@ -6,7 +6,7 @@ import sys import warnings -__version__ = "0.19.7" +__version__ = "0.19.8" class KedroDeprecationWarning(DeprecationWarning): From 5041aa40a36b92452f78baeb704b56a6815f2a31 Mon Sep 17 00:00:00 2001 From: Nok Date: Tue, 20 Aug 2024 15:36:48 +0000 Subject: [PATCH 2/3] add release note Signed-off-by: Nok --- RELEASE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASE.md b/RELEASE.md index dff7f2fc7e..db98dbfa12 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -12,6 +12,7 @@ * Made default run entrypoint in `__main__.py` work in interactive environments such as IPyhon and Databricks. ## Bug fixes and other changes +* Fixed a bug that caused tracebacks disappeared from CLI runs. * Moved `_find_run_command()` and `_find_run_command_in_plugins()` from `__main__.py` in the project template to the framework itself. * Fixed a bug where `%load_node` breaks with multi-lines import statements. * Fixed a regression where `rich` mark up logs stop showing since 0.19.7. From 5757b48e26fefd5cec5b13037949183c929e7ba8 Mon Sep 17 00:00:00 2001 From: Nok Date: Wed, 21 Aug 2024 16:22:37 +0000 Subject: [PATCH 3/3] add community contributions Signed-off-by: Nok --- RELEASE.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/RELEASE.md b/RELEASE.md index fa49881c5a..1bcd218cdc 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -23,6 +23,10 @@ * Add clarifications in docs explaining how runtime parameter resolution works. ## Community contributions +Many thanks to the following Kedroids for contributing PRs to this release: +* [cclauss](https://github.com/cclauss) +* [eltociear](https://github.com/eltociear) +* [ltalirz](https://github.com/ltalirz) # Release 0.19.7