Skip to content

Commit

Permalink
Release 0.18.11 (#2745)
Browse files Browse the repository at this point in the history
* Update release date in CITATION.cff

Signed-off-by: Ahdra Merali <[email protected]>

* Rename old version to 0.18.11 where relevant

Signed-off-by: Ahdra Merali <[email protected]>

* Add Upcoming release section to RELEASE.md

Signed-off-by: Ahdra Merali <[email protected]>

* Fix prepopulated TOC

Signed-off-by: Ahdra Merali <[email protected]>

* Fix prepopulated TOC

Signed-off-by: Ahdra Merali <[email protected]>

* update release notes with documentation details

Signed-off-by: Jo Stichbury <[email protected]>
Signed-off-by: Ahdra Merali <[email protected]>

* Add note of deprecation warning to RELEASE.md

Signed-off-by: Ahdra Merali <[email protected]>

* Do not unsuppress `DeprecationWarning`s with Kedro (#2747)

* Do not unsuppress `DeprecationWarning`s with Kedro

Signed-off-by: Deepyaman Datta <[email protected]>

* Remove unused import

Signed-off-by: Deepyaman Datta <[email protected]>

---------

Signed-off-by: Deepyaman Datta <[email protected]>
Signed-off-by: Ahdra Merali <[email protected]>

* Update RELEASE.md with deprecation table

Signed-off-by: Ahdra Merali <[email protected]>

* Update CITATION.cff

Signed-off-by: Ahdra Merali <[email protected]>

* Update CITATION.cff

Signed-off-by: Ahdra Merali <[email protected]>

* Update docs/source/configuration/advanced_configuration.md

Co-authored-by: Jo Stichbury <[email protected]>

* Update tutorial_template.md

* Add community contributions

Signed-off-by: Juan Luis Cano Rodríguez <[email protected]>

* Add Prefect 2.0 docs update to changelog

Signed-off-by: Juan Luis Cano Rodríguez <[email protected]>

---------

Signed-off-by: Ahdra Merali <[email protected]>
Signed-off-by: Jo Stichbury <[email protected]>
Signed-off-by: Deepyaman Datta <[email protected]>
Signed-off-by: Juan Luis Cano Rodríguez <[email protected]>
Co-authored-by: Jo Stichbury <[email protected]>
Co-authored-by: Deepyaman Datta <[email protected]>
Co-authored-by: Juan Luis Cano Rodríguez <[email protected]>
  • Loading branch information
4 people authored Jul 3, 2023
1 parent 45fee94 commit 8065fb0
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ authors:
- family-names: Theisen
given-names: Merel
title: Kedro
version: 0.18.10
date-released: 2023-06-08
version: 0.18.11
date-released: 2023-07-03
url: https://github.com/kedro-org/kedro
40 changes: 36 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,19 @@

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

# Upcoming Release 0.18.11
# Upcoming Release 0.18.12

## 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.11

## Major features and improvements
* Added `databricks-iris` as an official starter.
Expand All @@ -19,11 +31,31 @@
* Make `kedro micropkg package` accept `--verbose`.

## Documentation changes
* Added documentation for developing a Kedro project using a Databricks workspace.

## Breaking changes to the API
* Significant improvements to the documentation that covers working with Databricks and Kedro, including a new page for workspace-only development, and a guide to choosing the best workflow for your use case.
* Updated documentation for deploying with Prefect for version 2.0.

## Upcoming deprecations for Kedro 0.19.0
* Renamed dataset and error classes, in accordance with the [Kedro lexicon](https://github.com/kedro-org/kedro/wiki/Kedro-documentation-style-guide#kedro-lexicon). Dataset classes ending with "DataSet" and error classes starting with "DataSet" are deprecated and will be removed in 0.19.0. Note that all of the below classes are also importable from `kedro.io`; only the module where they are defined is listed as the location.

| Type | Deprecated Alias | Location |
| --------------------------- | --------------------------- | ------------------------------ |
| `CachedDataset` | `CachedDataSet` | `kedro.io.cached_dataset` |
| `LambdaDataset` | `LambdaDataSet` | `kedro.io.lambda_dataset` |
| `IncrementalDataset` | `IncrementalDataSet` | `kedro.io.partitioned_dataset` |
| `MemoryDataset` | `MemoryDataSet` | `kedro.io.memory_dataset` |
| `PartitionedDataset` | `PartitionedDataSet` | `kedro.io.partitioned_dataset` |
| `DatasetError` | `DataSetError` | `kedro.io.core` |
| `DatasetAlreadyExistsError` | `DataSetAlreadyExistsError` | `kedro.io.core` |
| `DatasetNotFoundError` | `DataSetNotFoundError` | `kedro.io.core` |

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

* [jmalovera10](https://github.com/jmalovera10)
* [debugger24](https://github.com/debugger24)
* [juliushetzel](https://github.com/juliushetzel)
* [jacobweiss2305](https://github.com/jacobweiss2305)
* [eduardoconto](https://github.com/eduardoconto)

# Release 0.18.10

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

## 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 @@ -3,4 +3,4 @@
configuration and pipeline assembly.
"""

__version__ = "0.18.10"
__version__ = "0.18.11"

0 comments on commit 8065fb0

Please sign in to comment.