Skip to content

Commit

Permalink
Release 0.19.8 (#4107)
Browse files Browse the repository at this point in the history
* Release 0.19.8

Signed-off-by: Nok <[email protected]>

* add release note

Signed-off-by: Nok <[email protected]>

* add community contributions

Signed-off-by: Nok <[email protected]>

---------

Signed-off-by: Nok <[email protected]>
  • Loading branch information
noklam committed Aug 21, 2024
1 parent 0f93ee6 commit ba98135
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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
16 changes: 15 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/source/development/commands_reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

Expand Down
2 changes: 1 addition & 1 deletion kedro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import sys
import warnings

__version__ = "0.19.7"
__version__ = "0.19.8"


class KedroDeprecationWarning(DeprecationWarning):
Expand Down

0 comments on commit ba98135

Please sign in to comment.