Skip to content

Commit

Permalink
Release 0.19.1 (#3421)
Browse files Browse the repository at this point in the history
Signed-off-by: Merel Theisen <[email protected]>
Signed-off-by: Ahdra Merali <[email protected]>
Co-authored-by: Ahdra Merali <[email protected]>
  • Loading branch information
merelcht and AhdraMeraliQB committed Dec 13, 2023
1 parent c7de525 commit 99e194b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ authors:
- family-names: Theisen
given-names: Merel
title: Kedro
version: 0.19.0
date-released: 2023-12-12
version: 0.19.1
date-released: 2023-12-13
url: https://github.com/kedro-org/kedro
7 changes: 6 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Upcoming Release 0.19.1
# Upcoming Release 0.19.2

## Major features and improvements

Expand All @@ -10,6 +10,11 @@

## Community contributions

# Release 0.19.1

## Bug fixes and other changes
* Loosened pin for `kedro-telemtry` to fix dependency issues in `0.19.0`.

# Release 0.19.0

## Major features and improvements
Expand Down
2 changes: 1 addition & 1 deletion docs/source/configuration/config_loader_migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ install Kedro version `0.18.13` or later to properly replace the `TemplatedConfi
You can install both this Kedro version and `omegaconf` using `pip`:

```bash
pip install "kedro>=0.18.13, <0.19.0"
pip install "kedro>=0.18.13"
```
This would be the minimum required Kedro version which includes `omegaconf` as a dependency and the necessary functionality to replace `TemplatedConfigLoader`.
Or you can run:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/development/commands_reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Returns output similar to the following, depending on the version of Kedro used
| |/ / _ \/ _` | '__/ _ \
| < __/ (_| | | | (_) |
|_|\_\___|\__,_|_| \___/
v0.19.0
v0.19.1
Kedro is a Python framework for
creating reproducible, maintainable
Expand Down
1 change: 1 addition & 0 deletions docs/source/robots.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ User-agent: *
Disallow: /
Allow: /en/stable/
Allow: /en/latest/
Allow: /en/0.19.1/
Allow: /en/0.19.0/
Allow: /en/0.18.5/
Allow: /en/0.18.6/
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.0"
__version__ = "0.19.1"


class KedroDeprecationWarning(DeprecationWarning):
Expand Down
3 changes: 2 additions & 1 deletion tests/framework/cli/test_starters.py
Original file line number Diff line number Diff line change
Expand Up @@ -1152,14 +1152,15 @@ def test_invalid_tools_with_starter(self, fake_kedro_cli):
"python_package": "my_project",
}
_write_yaml(Path("config.yml"), config)
shutil.copytree(TEMPLATE_PATH, "template")
result = CliRunner().invoke(
fake_kedro_cli,
[
"new",
"-v",
"--config",
"config.yml",
"--starter=spaceflights-pandas-viz",
"--starter=template",
],
)

Expand Down

0 comments on commit 99e194b

Please sign in to comment.