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

Merged
merged 10 commits into from
Aug 1, 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
12 changes: 10 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ authors:
given-names: Sajid
- family-names: Chan
given-names: Nok Lam
- family-names: Couto
given-names: Laura
- family-names: Dada
given-names: Yetunde
- family-names: Danov
Expand All @@ -13,6 +15,8 @@ authors:
given-names: Deepyaman
- family-names: DeBold
given-names: Tynan
- family-names: Gundaniya
given-names: Jitendra
- family-names: Holzer
given-names: Jannic
- family-names: Kaiser
Expand All @@ -33,18 +37,22 @@ authors:
given-names: Antony
- family-names: Nguyen
given-names: Huong
- family-names: Nikolic
given-names: Vladimir
- family-names: Okwa
given-names: Nero
- family-names: Cano Rodríguez
given-names: Juan Luis
orcid: https://orcid.org/0000-0002-2187-161X
- family-names: Schwarzmann
given-names: Joel
- family-names: Sorokin
given-names: Dmitry
- family-names: Stichbury
given-names: Jo
- family-names: Theisen
given-names: Merel
title: Kedro
version: 0.18.11
date-released: 2023-07-03
version: 0.18.12
date-released: 2023-07-31
url: https://github.com/kedro-org/kedro
14 changes: 13 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,19 @@

## Migration guide from Kedro 0.18.* to 0.19.*

# Upcoming Release 0.18.12
# Upcoming Release 0.18.13

## Major features and improvements

## Bug fixes and other changes

## Documentation changes

## Breaking changes to the API

## Upcoming deprecations for Kedro 0.19.0

# Release 0.18.12

## Major features and improvements
* Added dataset factories feature which uses pattern matching to reduce the number of catalog entries.
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 @@ -115,7 +115,7 @@ Returns output similar to the following, depending on the version of Kedro used
| |/ / _ \/ _` | '__/ _ \
| < __/ (_| | | | (_) |
|_|\_\___|\__,_|_| \___/
v0.18.11
v0.18.12

Kedro is a Python framework for
creating reproducible, maintainable
Expand Down
2 changes: 1 addition & 1 deletion docs/source/extend_kedro/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ setup(
After that you can use this starter with `kedro new --starter=test_plugin_starter`.

```{note}
If your starter lives on a git repository, by default Kedro attempts to use a tag or branch labelled with your version of Kedro, e.g. `0.18.11`. This means that you can host different versions of your starter template on the same repository, and the correct one will automatically be used. If you do not wish to follow this structure, you should override it with the `checkout` flag, e.g. `kedro new --starter=test_plugin_starter --checkout=main`.
If your starter lives on a git repository, by default Kedro attempts to use a tag or branch labelled with your version of Kedro, e.g. `0.18.12`. This means that you can host different versions of your starter template on the same repository, and the correct one will automatically be used. If you do not wish to follow this structure, you should override it with the `checkout` flag, e.g. `kedro new --starter=test_plugin_starter --checkout=main`.
```

## Working with `click`
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.18.11"
__version__ = "0.18.12"


class KedroPythonVersionWarning(UserWarning):
Expand Down