From 99e194b818376eb673fed39847ced4a53f725a9c Mon Sep 17 00:00:00 2001 From: Merel Theisen <49397448+merelcht@users.noreply.github.com> Date: Wed, 13 Dec 2023 13:44:44 +0000 Subject: [PATCH] Release `0.19.1` (#3421) Signed-off-by: Merel Theisen Signed-off-by: Ahdra Merali Co-authored-by: Ahdra Merali <90615669+AhdraMeraliQB@users.noreply.github.com> --- CITATION.cff | 4 ++-- RELEASE.md | 7 ++++++- docs/source/configuration/config_loader_migration.md | 2 +- docs/source/development/commands_reference.md | 2 +- docs/source/robots.txt | 1 + kedro/__init__.py | 2 +- tests/framework/cli/test_starters.py | 3 ++- 7 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 26297f521a..1c239866a6 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -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 diff --git a/RELEASE.md b/RELEASE.md index 0ee85f8412..401d6efc3a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,4 @@ -# Upcoming Release 0.19.1 +# Upcoming Release 0.19.2 ## Major features and improvements @@ -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 diff --git a/docs/source/configuration/config_loader_migration.md b/docs/source/configuration/config_loader_migration.md index 5709849617..787ffabb8d 100644 --- a/docs/source/configuration/config_loader_migration.md +++ b/docs/source/configuration/config_loader_migration.md @@ -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: diff --git a/docs/source/development/commands_reference.md b/docs/source/development/commands_reference.md index c1e7d5e8de..b3d1911d3e 100644 --- a/docs/source/development/commands_reference.md +++ b/docs/source/development/commands_reference.md @@ -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 diff --git a/docs/source/robots.txt b/docs/source/robots.txt index 4c104db342..3c96089460 100644 --- a/docs/source/robots.txt +++ b/docs/source/robots.txt @@ -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/ diff --git a/kedro/__init__.py b/kedro/__init__.py index a924bfc6a7..4406f54074 100644 --- a/kedro/__init__.py +++ b/kedro/__init__.py @@ -6,7 +6,7 @@ import sys import warnings -__version__ = "0.19.0" +__version__ = "0.19.1" class KedroDeprecationWarning(DeprecationWarning): diff --git a/tests/framework/cli/test_starters.py b/tests/framework/cli/test_starters.py index 8a97f327d1..13f621857f 100644 --- a/tests/framework/cli/test_starters.py +++ b/tests/framework/cli/test_starters.py @@ -1152,6 +1152,7 @@ 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, [ @@ -1159,7 +1160,7 @@ def test_invalid_tools_with_starter(self, fake_kedro_cli): "-v", "--config", "config.yml", - "--starter=spaceflights-pandas-viz", + "--starter=template", ], )