Skip to content

Commit

Permalink
Bump up version to 0.17.5 (#1239)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorena Bălan authored Sep 14, 2021
1 parent d36fce9 commit 80c0d3a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
6 changes: 3 additions & 3 deletions docs/source/03_tutorial/02_tutorial_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/09_development/03_commands_reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions docs/source/10_deployment/08_databricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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}/<your-repo-name>.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
Expand Down
2 changes: 1 addition & 1 deletion kedro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
configuration and pipeline assembly.
"""

__version__ = "0.17.4"
__version__ = "0.17.5"


import logging
Expand Down

0 comments on commit 80c0d3a

Please sign in to comment.