Skip to content

Commit

Permalink
Release 0.18.12 (kedro-org#2871)
Browse files Browse the repository at this point in the history
* bump version and prepare for new release

Signed-off-by: SajidAlamQB <[email protected]>

* Update RELEASE.md

Added community contributions

* add DeltaTableDataSet to rst

Signed-off-by: SajidAlamQB <[email protected]>

* Update setup.py

Signed-off-by: SajidAlamQB <[email protected]>

* Update setup.py

Signed-off-by: SajidAlamQB <[email protected]>

* Update setup.py

Co-authored-by: Juan Luis Cano Rodríguez <[email protected]>

* temporarily use the fixed kedro-plugins branch

Signed-off-by: SajidAlamQB <[email protected]>

* Update setup.py

Signed-off-by: SajidAlamQB <[email protected]>

* test docsbuild on merels branch

Signed-off-by: SajidAlamQB <[email protected]>

* use kedro-datasets new release

Signed-off-by: SajidAlamQB <[email protected]>

---------

Signed-off-by: SajidAlamQB <[email protected]>
Co-authored-by: Jo Stichbury <[email protected]>
Co-authored-by: Juan Luis Cano Rodríguez <[email protected]>
  • Loading branch information
3 people authored Aug 1, 2023
1 parent 6913acd commit 7ac654d
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 7 deletions.
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
18 changes: 17 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 All @@ -23,6 +35,10 @@
## Documentation changes
* Recommended `ruff` as the linter and removed mentions of `pylint`, `isort`, `flake8`.

## Community contributions

Thanks to [Laíza Milena Scheid Parizotto](https://github.com/laizaparizotto) and [Chris Schopp](https://github.com/cschopp-simwell).

## Breaking changes to the API

## Upcoming deprecations for Kedro 0.19.0
Expand Down
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@
"PluginManager",
"_DI",
"_DO",
"deltalake.table.Metadata",
# The statements below were added after subclassing UserDict in AbstractConfigLoader.
"None. Remove all items from D.",
"a shallow copy of D",
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
1 change: 1 addition & 0 deletions docs/source/kedro_datasets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ kedro_datasets
kedro_datasets.networkx.GraphMLDataSet
kedro_datasets.networkx.JSONDataSet
kedro_datasets.pandas.CSVDataSet
kedro_datasets.pandas.DeltaTableDataSet
kedro_datasets.pandas.ExcelDataSet
kedro_datasets.pandas.FeatherDataSet
kedro_datasets.pandas.GBQQueryDataSet
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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def _collect_requirements(requires):
"sphinxcontrib-mermaid~=0.7.1",
"myst-parser~=1.0.0",
"Jinja2<3.1.0",
"kedro-datasets[all]~=1.4.2",
"kedro-datasets[all,pandas-deltatabledataset]~=1.5.1",
],
"geopandas": _collect_requirements(geopandas_require),
"matplotlib": _collect_requirements(matplotlib_require),
Expand Down

0 comments on commit 7ac654d

Please sign in to comment.