Skip to content

Commit

Permalink
Release 0.16.5 (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorena Bălan committed Sep 9, 2020
1 parent ae1a50f commit f9100f8
Show file tree
Hide file tree
Showing 18 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion docs/source/04_kedro_project_setup/02_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

This section contains detailed information about configuration, for which the relevant API documentation can be found in [kedro.config.ConfigLoader](/kedro.config.ConfigLoader)

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
## Local and base configuration

Expand Down
2 changes: 1 addition & 1 deletion docs/source/05_data/01_data_catalog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The Data Catalog

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
This section introduces `catalog.yml`, the project-shareable Data Catalog. The file is located in `conf/base` and is a registry of all data sources available for use by a project; it manages loading and saving of data.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/05_data/02_kedro_io.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

In this tutorial, we cover advanced uses of the [Kedro IO](/kedro.io.rst) module to understand the underlying implementation. The relevant API documentation is [kedro.io.AbstractDataSet](/kedro.io.AbstractDataSet) and [kedro.io.DataSetError](/kedro.io.DataSetError).

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
## Error handling

Expand Down
2 changes: 1 addition & 1 deletion docs/source/06_nodes_and_pipelines/01_nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

In this section we introduce the concept of a node, for which the relevant API documentation is [kedro.pipeline.node](/kedro.pipeline.node).

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
You will first need to import libraries from Kedro and other standard tools to run the code snippets demonstrated below.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/06_nodes_and_pipelines/02_pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

To benefit from Kedro's automatic dependency resolution, nodes can be chained in a [pipeline](/kedro.pipeline.Pipeline). A pipeline is a list of nodes that use a shared set of variables.

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
## Building pipelines

Expand Down
2 changes: 1 addition & 1 deletion docs/source/07_extend_kedro/05_plugins.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Kedro plugins


> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
Kedro plugins allow you to create new features for Kedro and inject additional commands into the CLI. Plugins are developed as separate Python packages that exist outside of any Kedro project.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/08_logging/01_logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Kedro uses, and facilitates, the use of Python’s `logging` library by providing a default logging configuration. This can be found in `conf/base/logging.yml` in every project generated using Kedro’s CLI `kedro new` command.

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.

## Configure logging
Expand Down
4 changes: 2 additions & 2 deletions docs/source/08_logging/02_journal.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Journal


> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
## Overview

Expand All @@ -18,7 +18,7 @@ A context journal record captures all the necessary information to reproduce the
"run_id": "2019-10-01T09.15.57.289Z",
"project_path": "<path-to-project>/src/kedro-tutorial",
"env": "local",
"kedro_version": "0.16.4",
"kedro_version": "0.16.5",
"tags": [],
"from_nodes": [],
"to_nodes": [],
Expand Down
2 changes: 1 addition & 1 deletion docs/source/09_development/01_set_up_vscode.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Set up Visual Studio Code


> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
Start by opening a new project directory in VS Code and installing the Python plugin under **Tools and languages**:

Expand Down
2 changes: 1 addition & 1 deletion docs/source/09_development/02_set_up_pycharm.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Set up PyCharm

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
This section will present a quick guide on how to configure [PyCharm](https://www.jetbrains.com/pycharm/) as a development environment for working on Kedro projects.

Expand Down
4 changes: 2 additions & 2 deletions docs/source/09_development/03_commands_reference.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Kedro's command line interface

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
Kedro's command line interface (CLI) is used to give commands to Kedro via a terminal shell (such as the terminal app on macOS, or cmd.exe or PowerShell on Windows). You need to use the CLI to set up a new Kedro project, and to run it.

Expand Down Expand Up @@ -115,7 +115,7 @@ Returns output similar to the following, depending on the version of Kedro used
| |/ / _ \/ _` | '__/ _ \
| < __/ (_| | | | (_) |
|_|\_\___|\__,_|_| \___/
v0.16.4
v0.16.5
kedro allows teams to create analytics
projects. It is developed as part of
Expand Down
2 changes: 1 addition & 1 deletion docs/source/09_development/04_lint.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

To follow these instructions, you will need to install the `pylint` package, subject to GPL licence.

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
You can lint your project code to ensure code quality using the `kedro lint` command, your project is linted with [`black`](https://github.com/psf/black) (projects created with Python 3.6 and above), [`flake8`](https://gitlab.com/pycqa/flake8) and [`isort`](https://github.com/timothycrosley/isort). If you prefer to use [pylint](https://www.pylint.org/), a popular linting tool, then the sample commands you can use to help with this are included in the script below:

Expand Down
2 changes: 1 addition & 1 deletion docs/source/09_development/05_debugging.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Debugging

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
## Introduction

Expand Down
2 changes: 1 addition & 1 deletion docs/source/10_tools_integration/01_pyspark.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build a Kedro pipeline with PySpark

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
This page outlines some best practices when building a Kedro pipeline with [`PySpark`](https://spark.apache.org/docs/latest/api/python/index.html). It assumes a basic understanding of both Kedro and `PySpark`.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/10_tools_integration/02_ipython.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use Kedro with IPython and Jupyter Notebooks/Lab

> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
This section follows the [Iris dataset example](../02_get_started/05_example_project.md) and demonstrates how to effectively use IPython and Jupyter Notebooks / Lab.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/10_tools_integration/03_databricks.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# How to use Kedro on a Databricks cluster


> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
We recommend that you use [Databricks Connect](https://pypi.org/project/databricks-connect/) to execute your Kedro pipeline on a Databricks cluster.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/11_faq/02_architecture_overview.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Kedro architecture overview


> *Note:* This documentation is based on `Kedro 0.16.4`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
> *Note:* This documentation is based on `Kedro 0.16.5`, if you spot anything that is incorrect then please create an [issue](https://github.com/quantumblacklabs/kedro/issues) or pull request.
Here is a diagram showing high-level architecture of Kedro library:

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.16.4"
__version__ = "0.16.5"


import logging
Expand Down

0 comments on commit f9100f8

Please sign in to comment.