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 2 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
12 changes: 11 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
# 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
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
3 changes: 2 additions & 1 deletion docs/source/robots.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
User-agent: *
astrojuanlu marked this conversation as resolved.
Show resolved Hide resolved
Disallow: /
Allow: /en/stable/
Allow: /en/0.19.8*
Allow: /en/0.19.7*
Allow: /en/0.19.6*
Allow: /en/0.19.5*
Expand All @@ -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
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
Loading