From 2d1ff1c3de007edbd38353f0f2b56ea0d0464df9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorena=20B=C4=83lan?= Date: Tue, 8 Oct 2019 12:54:25 +0100 Subject: [PATCH] Apply suggestions from code review Co-Authored-By: Yetunde Dada <43755008+yetudada@users.noreply.github.com> --- RELEASE.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index d2c156e693..1f78b27963 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -2,19 +2,19 @@ ## Major features and improvements * Added a new `--load-version` to specify a particular dataset version for loading. -* Modular pipeline support - break the pipeline into isolated parts with reusability in mind. -* Multiple pipelines - ability to have multiple entry point pipelines and chose one with `kedro run --pipeline NAME`. -* Added a `MatplotlibWriter` dataset in `contrib` for saving matplotlib images. -* Parameterized config loader - ability to use central set of parameters throughout all your config files with `kedro.contrib.config.TemplatedConfigLoader`. -* Parameters are exposed as a context property for ease of access in iPython / Jupyter notebooks (i.e `context.params`). +* Support for modular pipelines in `src/`, break the pipeline into isolated parts with reusability in mind. +* Support for multiple pipelines, an ability to have multiple entry point pipelines and chose one with `kedro run --pipeline NAME`. +* Added a `MatplotlibWriter` dataset in `contrib` for saving Matplotlib images. +* An ability to template/parameterize configuration files with `kedro.contrib.config.TemplatedConfigLoader`. +* Parameters are exposed as a context property for ease of access in iPython / Jupyter Notebooks with `context.params`. * Added `max_workers` parameter for ``ParallelRunner``. ## Bug fixes and other changes -* Users will override `_get_pipeline` abstract method in `ProjectContext(KedroContext)` in `run.py` rather than `pipeline` abstract property. `pipeline` property is not abstract anymore. +* Users will override the `_get_pipeline` abstract method in `ProjectContext(KedroContext)` in `run.py` rather than the `pipeline` abstract property. The `pipeline` property is not abstract anymore. * Improved an error message when versioned local dataset is saved and unversioned path already exists. * Add `catalog` global variable to `00-kedro-init.py`. * Enabled tuples to be returned from a node. -* Disallow the ``ConfigLoader`` loading the same file more than once, and deduplicate the `conf_paths` passed in. +* Disallowed the ``ConfigLoader`` loading the same file more than once, and deduplicated the `conf_paths` passed in. * Added a `--open` flag to `kedro build-docs` that opens the documentation on build. * Updated ``Pipeline`` representation to include name and number of nodes, also making it readable as a context property. * `kedro.contrib.io.pyspark.SparkDataSet` and `kedro.contrib.io.azure.CSVBlobDataSet` now support versioning.