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

Merged
merged 9 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -51,6 +51,6 @@ authors:
- family-names: Theisen
given-names: Merel
title: Kedro
version: 0.19.1
date-released: 2023-12-13
version: 0.19.2
date-released: 2024-01-16
Copy link
Member

Choose a reason for hiding this comment

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

Don't forget to update this when we do the release on Monday!

url: https://github.com/kedro-org/kedro
19 changes: 10 additions & 9 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# Upcoming Release 0.19.2
# Upcoming Release 0.19.3

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 0.19.3' should use sentence-style capitalization.
Raw output
{"message": "[Kedro.headings] 'Upcoming Release 0.19.3' 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
* Removed example pipeline requirements when examples are not selected in `tools`.
* Allowed modern versions of JupyterLab and Jupyter Notebooks.
* Removed setuptools dependency
* Added `source_dir` explicitly in `pyproject.toml` for non-src layout project.
* `MemoryDataset` entries are now included in free outputs.

## Breaking changes to the API
* Added logging about not using async mode in `SequentiallRunner` and `ParallelRunner`.

## Documentation changes
* Added documentation about `bootstrap_project` and `configure_project`.
* Added documentation about `kedro run` and hook execution order.

## Community contributions

# Upcoming Release 0.19.2

Check warning on line 13 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L13

[Kedro.headings] 'Upcoming Release 0.19.2' should use sentence-style capitalization.
Raw output
{"message": "[Kedro.headings] 'Upcoming Release 0.19.2' should use sentence-style capitalization.", "location": {"path": "RELEASE.md", "range": {"start": {"line": 13, "column": 3}}}, "severity": "WARNING"}
SajidAlamQB marked this conversation as resolved.
Show resolved Hide resolved

## Bug fixes and other changes
* Removed example pipeline requirements when examples are not selected in `tools`.
* Allowed modern versions of JupyterLab and Jupyter Notebooks.
* Removed setuptools dependency

Check warning on line 18 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L18

[Kedro.Spellings] Did you really mean 'setuptools'?
Raw output
{"message": "[Kedro.Spellings] Did you really mean 'setuptools'?", "location": {"path": "RELEASE.md", "range": {"start": {"line": 18, "column": 11}}}, "severity": "WARNING"}
* Added `source_dir` explicitly in `pyproject.toml` for non-src layout project.
* `MemoryDataset` entries are now included in free outputs.

# Release 0.19.1

## Bug fixes and other changes
Expand Down
2 changes: 1 addition & 1 deletion docs/source/development/commands_reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Returns output similar to the following, depending on the version of Kedro used
| |/ / _ \/ _` | '__/ _ \
| < __/ (_| | | | (_) |
|_|\_\___|\__,_|_| \___/
v0.19.1
v0.19.2

Kedro is a Python framework for
creating reproducible, maintainable
Expand Down
1 change: 1 addition & 0 deletions docs/source/robots.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ User-agent: *
Disallow: /
Allow: /en/stable/
Allow: /en/latest/
Allow: /en/0.19.2/
Allow: /en/0.19.1/
Allow: /en/0.19.0/
Allow: /en/0.18.5/
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.1"
__version__ = "0.19.2"


class KedroDeprecationWarning(DeprecationWarning):
Expand Down
Loading