Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.19.8 #4107

Merged
merged 5 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

Check warning on line 1 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L1

[Kedro.headings] 'Upcoming Release' should use sentence-style capitalization.
Raw output
{"message": "[Kedro.headings] 'Upcoming Release' should use sentence-style capitalization.", "location": {"path": "RELEASE.md", "range": {"start": {"line": 1, "column": 3}}}, "severity": "WARNING"}

## 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.

noklam marked this conversation as resolved.
Show resolved Hide resolved
## Breaking changes to the API

## Documentation changes
astrojuanlu marked this conversation as resolved.
Show resolved Hide resolved
* Add clarifications in docs explaining how runtime parameter resolution works.

## Community contributions
Many thanks to the following Kedroids for contributing PRs to this release:

Check warning on line 26 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L26

[Kedro.weaselwords] 'Many' is a weasel word!
Raw output
{"message": "[Kedro.weaselwords] 'Many' is a weasel word!", "location": {"path": "RELEASE.md", "range": {"start": {"line": 26, "column": 1}}}, "severity": "WARNING"}

Check warning on line 26 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L26

[Kedro.Spellings] Did you really mean 'Kedroids'?
Raw output
{"message": "[Kedro.Spellings] Did you really mean 'Kedroids'?", "location": {"path": "RELEASE.md", "range": {"start": {"line": 26, "column": 30}}}, "severity": "WARNING"}
* [cclauss](https://github.com/cclauss)

Check warning on line 27 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L27

[Kedro.Spellings] Did you really mean 'cclauss'?
Raw output
{"message": "[Kedro.Spellings] Did you really mean 'cclauss'?", "location": {"path": "RELEASE.md", "range": {"start": {"line": 27, "column": 4}}}, "severity": "WARNING"}
* [eltociear](https://github.com/eltociear)

Check warning on line 28 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L28

[Kedro.Spellings] Did you really mean 'eltociear'?
Raw output
{"message": "[Kedro.Spellings] Did you really mean 'eltociear'?", "location": {"path": "RELEASE.md", "range": {"start": {"line": 28, "column": 4}}}, "severity": "WARNING"}
* [ltalirz](https://github.com/ltalirz)

Check warning on line 29 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L29

[Kedro.Spellings] Did you really mean 'ltalirz'?
Raw output
{"message": "[Kedro.Spellings] Did you really mean 'ltalirz'?", "location": {"path": "RELEASE.md", "range": {"start": {"line": 29, "column": 4}}}, "severity": "WARNING"}

# 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)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh wow have we just neglected updating this?! 👀

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@merelcht Yeah I don't think we have the habit to make sure this is up to date, but this is surely quite outdated🤓


```

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