From 80c0d3a47166c54f2bff4bed42cf63e06e65273c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorena=20B=C4=83lan?= Date: Tue, 14 Sep 2021 15:49:28 +0100 Subject: [PATCH] Bump up version to 0.17.5 (#1239) --- RELEASE.md | 2 +- docs/source/03_tutorial/02_tutorial_template.md | 6 +++--- docs/source/09_development/03_commands_reference.md | 2 +- docs/source/10_deployment/08_databricks.md | 6 +++--- kedro/__init__.py | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index c424c7e375..fff6d9153a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,4 @@ -# Upcoming Release 0.17.5 +# Release 0.17.5 ## Major features and improvements * Added new CLI group `registry`, with the associated commands `kedro registry list` and `kedro registry describe`, to replace `kedro pipeline list` and `kedro pipeline describe`. diff --git a/docs/source/03_tutorial/02_tutorial_template.md b/docs/source/03_tutorial/02_tutorial_template.md index 7918319440..ded3e58015 100644 --- a/docs/source/03_tutorial/02_tutorial_template.md +++ b/docs/source/03_tutorial/02_tutorial_template.md @@ -40,7 +40,7 @@ isort~=5.0 # Used for linting code with `kedro lint` jupyter~=1.0 # Used to open a Kedro-session in Jupyter Notebook & Lab jupyter_client>=5.1.0, <7.0 # Used to open a Kedro-session in Jupyter Notebook & Lab jupyterlab~=3.0 # Used to open a Kedro-session in Jupyter Lab -kedro==0.17.4 +kedro==0.17.5 nbstripout~=0.4 # Strips the output of a Jupyter Notebook and writes the outputless version to the original file pytest-cov~=2.5 # Produces test coverage reports pytest-mock>=1.7.1, <2.0 # Wrapper around the mock package for easier use with pytest @@ -61,10 +61,10 @@ The dependencies above may be sufficient for some projects, but for the spacefli pip install "kedro[pandas.CSVDataSet,pandas.ExcelDataSet]" ``` -Alternatively, if you need to, you can edit `src/requirements.txt` directly to modify your list of dependencies by replacing the requirement `kedro==0.17.4` with the following (your version of Kedro may be different): +Alternatively, if you need to, you can edit `src/requirements.txt` directly to modify your list of dependencies by replacing the requirement `kedro==0.17.5` with the following (your version of Kedro may be different): ```text -kedro[pandas.CSVDataSet,pandas.ExcelDataSet]==0.17.4 +kedro[pandas.CSVDataSet,pandas.ExcelDataSet]==0.17.5 ``` Then run the following: diff --git a/docs/source/09_development/03_commands_reference.md b/docs/source/09_development/03_commands_reference.md index 0a74ab2fa4..f5239c674c 100644 --- a/docs/source/09_development/03_commands_reference.md +++ b/docs/source/09_development/03_commands_reference.md @@ -119,7 +119,7 @@ Returns output similar to the following, depending on the version of Kedro used | |/ / _ \/ _` | '__/ _ \ | < __/ (_| | | | (_) | |_|\_\___|\__,_|_| \___/ -v0.17.4 +v0.17.5 kedro allows teams to create analytics projects. It is developed as part of diff --git a/docs/source/10_deployment/08_databricks.md b/docs/source/10_deployment/08_databricks.md index 42c26ae52d..203f729c9d 100644 --- a/docs/source/10_deployment/08_databricks.md +++ b/docs/source/10_deployment/08_databricks.md @@ -38,7 +38,7 @@ conda create --name iris_databricks python=3.7 -y conda activate iris_databricks # install Kedro and create a new project -pip install "kedro~=0.17.4" +pip install "kedro~=0.17.5" # name your project Iris Databricks when prompted for it kedro new --starter pyspark-iris ``` @@ -316,10 +316,10 @@ In your newly created notebook put each code snippet from below into a separate %sh rm -rf ~/projects/iris-databricks && git clone --single-branch --branch master https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/${GITHUB_USER}/.git ~/projects/iris-databricks ``` -* Install the latest version of Kedro compatible with version `0.17.4` +* Install the latest version of Kedro compatible with version `0.17.5` ```console -%pip install "kedro[spark.SparkDataSet]~=0.17.4" +%pip install "kedro[spark.SparkDataSet]~=0.17.5" ``` * Copy input data into DBFS diff --git a/kedro/__init__.py b/kedro/__init__.py index be0bc5d7f6..35a43b5f4a 100644 --- a/kedro/__init__.py +++ b/kedro/__init__.py @@ -31,7 +31,7 @@ configuration and pipeline assembly. """ -__version__ = "0.17.4" +__version__ = "0.17.5" import logging