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 d9c788e957..1bcd218cdc 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,18 +1,32 @@ -# 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. ## 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. + ## Breaking changes to the API ## Documentation changes * 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 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/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):