diff --git a/CITATION.cff b/CITATION.cff index 371e42a1b0..e2b222ea7f 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -44,6 +44,6 @@ authors: - family-names: Brugman given-names: Simon title: Kedro -version: 0.19.9 -date-released: 2024-10-10 +version: 0.19.10 +date-released: 2024-11-26 url: https://github.com/kedro-org/kedro diff --git a/README.md b/README.md index 50ffbe9bd0..9138256fd5 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@

-[![Python version](https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue.svg)](https://pypi.org/project/kedro/) +[![Python version](https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue.svg)](https://pypi.org/project/kedro/) [![PyPI version](https://badge.fury.io/py/kedro.svg)](https://pypi.org/project/kedro/) [![Conda version](https://img.shields.io/conda/vn/conda-forge/kedro.svg)](https://anaconda.org/conda-forge/kedro) [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/kedro-org/kedro/blob/main/LICENSE.md) diff --git a/RELEASE.md b/RELEASE.md index 9475b07f46..d84495d5e6 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,13 @@ # Upcoming Release +## Major features and improvements +## Bug fixes and other changes +## Breaking changes to the API +## Documentation changes +## Community contributions + +# Release 0.19.10 + ## Major features and improvements * Add official support for Python 3.13. * Implemented dict-like interface for `KedroDataCatalog`. @@ -21,8 +29,11 @@ * Standardised `.parquet` suffix in docs and tests. ## Community contributions +Many thanks to the following Kedroids for contributing PRs to this release: +* [G. D. McBain](https://github.com/gdmcbain) +* [Greg Vaslowski](https://github.com/Vaslo) * [Hyewon Choi](https://github.com/hyew0nChoi) - +* [Pedro Antonacio](https://github.com/antonacio) # Release 0.19.9 diff --git a/docs/source/development/commands_reference.md b/docs/source/development/commands_reference.md index d66d4ffcc6..a49f2de5c2 100644 --- a/docs/source/development/commands_reference.md +++ b/docs/source/development/commands_reference.md @@ -109,14 +109,14 @@ Returns output similar to the following, depending on the version of Kedro used | |/ / _ \/ _` | '__/ _ \ | < __/ (_| | | | (_) | |_|\_\___|\__,_|_| \___/ -v0.19.8 +v0.19.10 Kedro is a Python framework for creating reproducible, maintainable and modular data science code. Installed plugins: -kedro_viz: 9.2.0 (hooks:global,line_magic) +kedro_viz: 10.1.0 (entry points:global,hooks,line_magic) ``` diff --git a/docs/source/index.rst b/docs/source/index.rst index ecbdbbe381..5575a8607b 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -23,9 +23,9 @@ Welcome to Kedro's award-winning documentation! :target: https://opensource.org/license/apache2-0-php/ :alt: License is Apache 2.0 -.. image:: https://img.shields.io/badge/3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue.svg +.. image:: https://img.shields.io/badge/3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue.svg :target: https://pypi.org/project/kedro/ - :alt: Python version 3.9, 3.10, 3.11, 3.12 + :alt: Python version 3.9, 3.10, 3.11, 3.12, 3.13 .. image:: https://badge.fury.io/py/kedro.svg :target: https://pypi.org/project/kedro/ diff --git a/kedro/__init__.py b/kedro/__init__.py index afb4928658..0a0d050098 100644 --- a/kedro/__init__.py +++ b/kedro/__init__.py @@ -6,7 +6,7 @@ import sys import warnings -__version__ = "0.19.9" +__version__ = "0.19.10" class KedroDeprecationWarning(DeprecationWarning):