Skip to content

Commit

Permalink
Release v5.2.0 (#1223)
Browse files Browse the repository at this point in the history
* v5.2.0

Signed-off-by: Tynan DeBold <thdebold@gmail.com>

* Update lightsail file with new release version

Signed-off-by: Tynan DeBold <thdebold@gmail.com>

* Update demo project to Kedro==0.18.4

Signed-off-by: Tynan DeBold <thdebold@gmail.com>

* Update RELEASE.md

* Update RELEASE.md

Signed-off-by: Tynan DeBold <thdebold@gmail.com>
Co-authored-by: Antony Milne <49395058+AntonyMilneQB@users.noreply.github.com>
  • Loading branch information
tynandebold and antonymilne committed Jan 18, 2023
1 parent 193cbb9 commit 6db11bc
Show file tree
Hide file tree
Showing 14 changed files with 22 additions and 15 deletions.
3 changes: 2 additions & 1 deletion RELEASE.md
Expand Up @@ -12,7 +12,7 @@ Please follow the established format:

- Allow users to hide modular pipelines on the flowchart. (#1046)
- Create URL parameters for each element/section in the flowchart. (#1138)
- Improve CLI loading time. (#1196)
- Improve Kedro CLI loading time. (#1196)
- Make Kedro-Viz compatible with kedro-datasets. (#1214)
- Add time series and parallel coordinates metrics plots to experiment tracking. (#1102)

Expand All @@ -27,6 +27,7 @@ Please follow the established format:
- Enhance display of the flowchart when hovering over the FocusMode icon. (#1107)
- Make dotted datasets clickable and hoverable when in focus mode. (#1114)
- Fix a bug where tall Matplotlib images weren't displaying correctly. (#1145)
- Non-JSON serialisable YAML parameter values (`.nan` and `.inf`) are now rendered as `null`. (#1087)

# Release 5.1.1

Expand Down
2 changes: 1 addition & 1 deletion demo-project/.version
@@ -1 +1 @@
5.1.1
5.2.0
2 changes: 1 addition & 1 deletion demo-project/README.md
Expand Up @@ -4,7 +4,7 @@ This project is designed to be a realistic example of what Kedro looks like when

## Setup

1. Run `pip install kedro==0.18.1`
1. Run `pip install kedro==0.18.4`
2. Run `kedro install --build-reqs`
3. Run `kedro run`
4. Run `kedro viz`
2 changes: 1 addition & 1 deletion demo-project/lightsail.json
Expand Up @@ -2,7 +2,7 @@
"serviceName": "kedro-viz-live-demo",
"containers": {
"kedro-viz-live-demo": {
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:5.1.1",
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:5.2.0",
"ports": {
"4141": "HTTP"
}
Expand Down
2 changes: 1 addition & 1 deletion demo-project/pyproject.toml
@@ -1,7 +1,7 @@
[tool.kedro]
package_name = "demo_project"
project_name = "modular-spaceflights"
project_version = "0.18.1"
project_version = "0.18.4"

[tool.isort]
multi_line_output = 3
Expand Down
@@ -1 +1,2 @@
kedro[pandas.CSVDataSet,pandas.ExcelDataSet, pandas.ParquetDataSet]==0.18.1
kedro==0.18.4
kedro-datasets[pandas.CSVDataSet,pandas.ExcelDataSet, pandas.ParquetDataSet]==1.0.1
@@ -1 +1,2 @@
kedro[pandas.ParquetDataSet]==0.18.1
kedro==0.18.4
kedro-datasets[pandas.ParquetDataSet]==1.0.1
@@ -1,2 +1,3 @@
kedro[pandas.ParquetDataSet]==0.18.1
kedro==0.18.4
kedro-datasets[pandas.ParquetDataSet]==1.0.1
scikit-learn~=1.0
@@ -1,3 +1,4 @@
kedro[plotly.PlotlyDataSet, plotly.JSONDataSet, matplotlib.MatplotlibWriter]==0.18.1
kedro==0.18.4
kedro-datasets[plotly.PlotlyDataSet, plotly.JSONDataSet, matplotlib.MatplotlibWriter]==1.0.1
pillow==9.3.0
seaborn==0.11.2
3 changes: 2 additions & 1 deletion demo-project/src/demo_project/requirements.in
Expand Up @@ -5,7 +5,8 @@ isort~=5.0
jupyter~=1.0
jupyter_client>=5.1, <7.0
jupyterlab~=3.0
kedro[pandas.CSVDataSet,pandas.ExcelDataSet, pandas.ParquetDataSet, plotly.PlotlyDataSet]==0.18.1
kedro==0.18.4
kedro-datasets[pandas.CSVDataSet,pandas.ExcelDataSet, pandas.ParquetDataSet, plotly.PlotlyDataSet]==1.0.1
nbstripout~=0.4
pytest-cov~=2.5
pytest-mock>=1.7.1, <2.0
Expand Down
3 changes: 2 additions & 1 deletion demo-project/src/docker_requirements.txt
@@ -1,4 +1,5 @@
kedro[pandas.CSVDataSet,pandas.ExcelDataSet, pandas.ParquetDataSet, plotly.PlotlyDataSet, matplotlib.MatplotlibWriter]==0.18.1
kedro==0.18.4
kedro-datasets[pandas.CSVDataSet,pandas.ExcelDataSet, pandas.ParquetDataSet, plotly.PlotlyDataSet, matplotlib.MatplotlibWriter]==1.0.1
scikit-learn~=1.0
pillow~=9.0
seaborn~=0.11.2
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@quantumblack/kedro-viz",
"version": "5.1.1",
"version": "5.2.0",
"description": "Kedro-Viz is an interactive development tool for building data science pipelines with Kedro.",
"main": "lib/components/app/index.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion package/kedro_viz/__init__.py
@@ -1,3 +1,3 @@
"""Kedro plugin for visualising a Kedro pipeline"""

__version__ = "5.1.1"
__version__ = "5.2.0"

0 comments on commit 6db11bc

Please sign in to comment.