Skip to content

Commit ba98135

Browse files
authored
Release 0.19.8 (#4107)
* Release 0.19.8 Signed-off-by: Nok <nok.lam.chan@quantumblack.com> * add release note Signed-off-by: Nok <nok.lam.chan@quantumblack.com> * add community contributions Signed-off-by: Nok <nok.lam.chan@quantumblack.com> --------- Signed-off-by: Nok <nok.lam.chan@quantumblack.com>
1 parent 0f93ee6 commit ba98135

4 files changed

Lines changed: 20 additions & 6 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.7
48-
date-released: 2024-08-01
47+
version: 0.19.8
48+
date-released: 2024-08-20
4949
url: https://github.com/kedro-org/kedro

RELEASE.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
1-
# Upcoming Release 0.19.8
1+
# Upcoming Release
2+
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.8
210

311
## Major features and improvements
412
* Made default run entrypoint in `__main__.py` work in interactive environments such as IPyhon and Databricks.
513

614
## Bug fixes and other changes
15+
* Fixed a bug that caused tracebacks disappeared from CLI runs.
716
* Moved `_find_run_command()` and `_find_run_command_in_plugins()` from `__main__.py` in the project template to the framework itself.
817
* Fixed a bug where `%load_node` breaks with multi-lines import statements.
918
* Fixed a regression where `rich` mark up logs stop showing since 0.19.7.
19+
1020
## Breaking changes to the API
1121

1222
## Documentation changes
1323
* Add clarifications in docs explaining how runtime parameter resolution works.
1424

1525
## Community contributions
26+
Many thanks to the following Kedroids for contributing PRs to this release:
27+
* [cclauss](https://github.com/cclauss)
28+
* [eltociear](https://github.com/eltociear)
29+
* [ltalirz](https://github.com/ltalirz)
1630

1731
# Release 0.19.7
1832

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.7
112+
v0.19.8
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: 4.4.0 (hooks:global,line_magic)
119+
kedro_viz: 9.2.0 (hooks:global,line_magic)
120120
121121
```
122122

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.7"
9+
__version__ = "0.19.8"
1010

1111

1212
class KedroDeprecationWarning(DeprecationWarning):

0 commit comments

Comments
 (0)