Skip to content

Commit 0da4ec6

Browse files
authored
Release Kedro 0.19.14 (#4836)
Signed-off-by: Dmitry Sorokin <dmd40in@gmail.com>
1 parent e5946f3 commit 0da4ec6

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

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.13
48-
date-released: 2025-05-22
47+
version: 0.19.14
48+
date-released: 2025-06-17
4949
url: https://github.com/kedro-org/kedro

RELEASE.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
# Upcoming Release
22

33
## Major features and improvements
4-
* Added execution time to pipeline completion log.
54
## Bug fixes and other changes
6-
* Fixed a recursion error in custom datasets when `_describe()` accessed `self.__dict__`.
75
## Breaking changes to the API
86
## Upcoming deprecations for Kedro 1.0.0
97
## Documentation changes
108
## Community contributions
9+
10+
# Release 0.19.14
11+
12+
## Major features and improvements
13+
* Added execution time to pipeline completion log.
14+
## Bug fixes and other changes
15+
* Fixed a recursion error in custom datasets when `_describe()` accessed `self.__dict__`.
16+
## Community contributions
1117
Many thanks to the following Kedroids for contributing PRs to this release:
1218
* [Yury Fedotov](https://github.com/yury-fedotov)
1319

docs/source/development/commands_reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Returns output similar to the following, depending on the version of Kedro used
109109
| |/ / _ \/ _` | '__/ _ \
110110
| < __/ (_| | | | (_) |
111111
|_|\_\___|\__,_|_| \___/
112-
v0.19.13
112+
v0.19.14
113113
114114
Kedro is a Python framework for
115115
creating reproducible, maintainable

kedro/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import sys
1414
import warnings
1515

16-
__version__ = "0.19.13"
16+
__version__ = "0.19.14"
1717

1818

1919
class KedroDeprecationWarning(DeprecationWarning):

0 commit comments

Comments
 (0)