Skip to content

Commit

Permalink
Release 0.19.10 (#4352)
Browse files Browse the repository at this point in the history
* bump version to 0.19.10

* update command ref

* update 3.13 badge

* add py313

* merge main and update release note
  • Loading branch information
ravi-kumar-pilla authored Nov 26, 2024
1 parent cd4a7b8 commit e2c241b
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</picture>
</p>

[![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)
Expand Down
13 changes: 12 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/source/development/commands_reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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/
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.19.9"
__version__ = "0.19.10"


class KedroDeprecationWarning(DeprecationWarning):
Expand Down

0 comments on commit e2c241b

Please sign in to comment.