diff --git a/CITATION.cff b/CITATION.cff index abfa73c675..50b6dd9143 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -43,6 +43,6 @@ authors: - family-names: Theisen given-names: Merel title: Kedro -version: 0.18.8 -date-released: 2023-05-02 +version: 0.18.9 +date-released: 2023-05-31 url: https://github.com/kedro-org/kedro diff --git a/RELEASE.md b/RELEASE.md index 3b2cb8249f..09416a5b36 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -8,7 +8,7 @@ ## Migration guide from Kedro 0.18.* to 0.19.* -# Upcoming Release 0.18.9 +# Release 0.18.9 ## Major features and improvements * `kedro run --params` now updates interpolated parameters correctly when using `OmegaConfigLoader`. @@ -19,6 +19,11 @@ * `OmegaConfigLoader` will return a `dict` instead of `DictConfig`. * `OmegaConfigLoader` does not show a `MissingConfigError` when the config files exist but are empty. +## Documentation changes +* Added documentation for collaborative experiment tracking within Kedro-Viz. +* Revised section on deployment to better organise content and reflect how recently docs have been updated. +* Minor improvements to fix typos and revise docs to align with engineering changes. + ## Breaking changes to the API * `kedro package` does not produce `.egg` files anymore, and now relies exclusively on `.whl` files. diff --git a/docs/source/development/commands_reference.md b/docs/source/development/commands_reference.md index b5a2134f54..da7a0472c0 100644 --- a/docs/source/development/commands_reference.md +++ b/docs/source/development/commands_reference.md @@ -114,7 +114,7 @@ Returns output similar to the following, depending on the version of Kedro used | |/ / _ \/ _` | '__/ _ \ | < __/ (_| | | | (_) | |_|\_\___|\__,_|_| \___/ -v0.18.8 +v0.18.9 Kedro is a Python framework for creating reproducible, maintainable diff --git a/docs/source/extend_kedro/plugins.md b/docs/source/extend_kedro/plugins.md index 47d3652fd8..c55d01ff13 100644 --- a/docs/source/extend_kedro/plugins.md +++ b/docs/source/extend_kedro/plugins.md @@ -84,7 +84,7 @@ setup( After that you can use this starter with `kedro new --starter=test_plugin_starter`. ```{note} -If your starter lives on a git repository, by default Kedro attempts to use a tag or branch labelled with your version of Kedro, e.g. `0.18.8.`. This means that you can host different versions of your starter template on the same repository, and the correct one will automatically be used. If you do not wish to follow this structure, you should override it with the `checkout` flag, e.g. `kedro new --starter=test_plugin_starter --checkout=main`. +If your starter lives on a git repository, by default Kedro attempts to use a tag or branch labelled with your version of Kedro, e.g. `0.18.9.`. This means that you can host different versions of your starter template on the same repository, and the correct one will automatically be used. If you do not wish to follow this structure, you should override it with the `checkout` flag, e.g. `kedro new --starter=test_plugin_starter --checkout=main`. ``` ## Working with `click` diff --git a/docs/source/integrations/databricks_workspace.md b/docs/source/integrations/databricks_workspace.md index 7bfdd99a6d..ef3b01be0c 100644 --- a/docs/source/integrations/databricks_workspace.md +++ b/docs/source/integrations/databricks_workspace.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.18.8" +pip install "kedro~=0.18.9" # name your project Iris Databricks when prompted for it kedro new --starter=pyspark-iris ``` @@ -174,7 +174,7 @@ In your newly-created notebook, put each of the below code snippets into a separ * Install Kedro and the latest compatible version of Kedro-Datasets. ```console -%pip install "kedro==0.18.8" "kedro-datasets[spark.SparkDataSet]~=1.1" +%pip install "kedro==0.18.9" "kedro-datasets[spark.SparkDataSet]~=1.1" ``` * Copy input data into DBFS diff --git a/docs/source/tutorial/tutorial_template.md b/docs/source/tutorial/tutorial_template.md index 04652af300..eb76eaf7bf 100644 --- a/docs/source/tutorial/tutorial_template.md +++ b/docs/source/tutorial/tutorial_template.md @@ -49,7 +49,7 @@ pytest-mock>=1.7.1, <2.0 pytest~=7.2 # Kedro dependencies and datasets to work with different data formats (including CSV, Excel, and Parquet) -kedro~=0.18.8 +kedro~=0.18.9 kedro-datasets[pandas.CSVDataSet, pandas.ExcelDataSet, pandas.ParquetDataSet]~=1.1 kedro-telemetry~=0.2.0 kedro-viz~=6.0 # Visualise pipelines diff --git a/kedro/__init__.py b/kedro/__init__.py index 0c11f5793f..0a0edf97d9 100644 --- a/kedro/__init__.py +++ b/kedro/__init__.py @@ -3,4 +3,4 @@ configuration and pipeline assembly. """ -__version__ = "0.18.8" +__version__ = "0.18.9"