Skip to content

Commit

Permalink
Release 0.19.8
Browse files Browse the repository at this point in the history
Signed-off-by: Nok <[email protected]>
  • Loading branch information
noklam committed Aug 19, 2024
1 parent 2c1b2f5 commit e87d85c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 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
11 changes: 10 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# 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.
Expand All @@ -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
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
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: *
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

0 comments on commit e87d85c

Please sign in to comment.