Skip to content

Commit e2c241b

Browse files
Release 0.19.10 (#4352)
* bump version to 0.19.10 * update command ref * update 3.13 badge * add py313 * merge main and update release note
1 parent cd4a7b8 commit e2c241b

6 files changed

Lines changed: 20 additions & 9 deletions

File tree

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ authors:
4444
- family-names: Brugman
4545
given-names: Simon
4646
title: Kedro
47-
version: 0.19.9
48-
date-released: 2024-10-10
47+
version: 0.19.10
48+
date-released: 2024-11-26
4949
url: https://github.com/kedro-org/kedro

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</picture>
77
</p>
88

9-
[![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/)
9+
[![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/)
1010
[![PyPI version](https://badge.fury.io/py/kedro.svg)](https://pypi.org/project/kedro/)
1111
[![Conda version](https://img.shields.io/conda/vn/conda-forge/kedro.svg)](https://anaconda.org/conda-forge/kedro)
1212
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/kedro-org/kedro/blob/main/LICENSE.md)

RELEASE.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Upcoming Release
22

3+
## Major features and improvements
4+
## Bug fixes and other changes
5+
## Breaking changes to the API
6+
## Documentation changes
7+
## Community contributions
8+
9+
# Release 0.19.10
10+
311
## Major features and improvements
412
* Add official support for Python 3.13.
513
* Implemented dict-like interface for `KedroDataCatalog`.
@@ -21,8 +29,11 @@
2129
* Standardised `.parquet` suffix in docs and tests.
2230

2331
## Community contributions
32+
Many thanks to the following Kedroids for contributing PRs to this release:
33+
* [G. D. McBain](https://github.com/gdmcbain)
34+
* [Greg Vaslowski](https://github.com/Vaslo)
2435
* [Hyewon Choi](https://github.com/hyew0nChoi)
25-
36+
* [Pedro Antonacio](https://github.com/antonacio)
2637

2738
# Release 0.19.9
2839

docs/source/development/commands_reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,14 @@ Returns output similar to the following, depending on the version of Kedro used
109109
| |/ / _ \/ _` | '__/ _ \
110110
| < __/ (_| | | | (_) |
111111
|_|\_\___|\__,_|_| \___/
112-
v0.19.8
112+
v0.19.10
113113
114114
Kedro is a Python framework for
115115
creating reproducible, maintainable
116116
and modular data science code.
117117
118118
Installed plugins:
119-
kedro_viz: 9.2.0 (hooks:global,line_magic)
119+
kedro_viz: 10.1.0 (entry points:global,hooks,line_magic)
120120
121121
```
122122

docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Welcome to Kedro's award-winning documentation!
2323
:target: https://opensource.org/license/apache2-0-php/
2424
:alt: License is Apache 2.0
2525

26-
.. image:: https://img.shields.io/badge/3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue.svg
26+
.. 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
2727
:target: https://pypi.org/project/kedro/
28-
:alt: Python version 3.9, 3.10, 3.11, 3.12
28+
:alt: Python version 3.9, 3.10, 3.11, 3.12, 3.13
2929

3030
.. image:: https://badge.fury.io/py/kedro.svg
3131
:target: https://pypi.org/project/kedro/

kedro/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import sys
77
import warnings
88

9-
__version__ = "0.19.9"
9+
__version__ = "0.19.10"
1010

1111

1212
class KedroDeprecationWarning(DeprecationWarning):

0 commit comments

Comments
 (0)