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 Kedro 0.18.14 #3192

Merged
merged 4 commits into from
Oct 18, 2023
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
11 changes: 7 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
## Breaking changes to the API

## Migration guide from Kedro 0.18.* to 0.19.*
# Upcoming Release 0.18.14

# Release 0.18.14

## Major features and improvements
* Allowed using of custom cookiecutter templates for creating pipelines with `--template` flag for `kedro pipeline create` or via `template/pipeline` folder.
Expand All @@ -27,7 +28,6 @@
* New TSC members added to the page and the organisation of each member is also now listed.
* Plus some minor bug fixes and changes across the documentation.

## Breaking changes to the API
## Upcoming deprecations for Kedro 0.19.0
* All dataset classes will be removed from the core Kedro repository (`kedro.extras.datasets`). Install and import them from the [`kedro-datasets`](https://github.com/kedro-org/kedro-plugins/tree/main/kedro-datasets) package instead.
* All dataset classes ending with `DataSet` are deprecated and will be removed in Kedro `0.19.0` and `kedro-datasets` `2.0.0`. Instead, use the updated class names ending with `Dataset`.
Expand All @@ -36,15 +36,18 @@

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

* [Jason Hite](https://github.com/jasonmhite)
* [IngerMathilde](https://github.com/IngerMathilde)
* [Laíza Milena Scheid Parizotto](https://github.com/laizaparizotto)
* [Richard](https://github.com/CF-FHB-X)
* [flpvvvv](https://github.com/flpvvvv)
* [qheuristics](https://github.com/qheuristics)
* [Miguel Ortiz](https://github.com/miguel-ortiz-marin)

* [rxm7706](https://github.com/rxm7706)
* [Iñigo Hidalgo](https://github.com/inigohidalgo)
* [harmonys-qb](https://github.com/harmonys-qb)
* [Yi Kuang](https://github.com/lvxhnat)
* [Jens Lordén](https://github.com/Celsuss)

# Release 0.18.13

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 @@ -116,7 +116,7 @@ Returns output similar to the following, depending on the version of Kedro used
| |/ / _ \/ _` | '__/ _ \
| < __/ (_| | | | (_) |
|_|\_\___|\__,_|_| \___/
v0.18.13
v0.18.14

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 @@ -11,4 +11,5 @@ Allow: /en/0.18.10/
Allow: /en/0.18.11/
Allow: /en/0.18.12/
Allow: /en/0.18.13/
Allow: /en/0.18.14/
Allow: /en/0.17.7/
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.18.13"
__version__ = "0.18.14"


class KedroDeprecationWarning(DeprecationWarning):
Expand Down