Skip to content

Commit

Permalink
Release v7.1.0 (#1713)
Browse files Browse the repository at this point in the history
* v7.1.0

* Release v7.1.0

* PR number updated for cli command kedro viz build

* Doc link updated

* Doc text updated

* Test fix

* test fix

* Update RELEASE.md

Co-authored-by: Merel Theisen <49397448+merelcht@users.noreply.github.com>

---------

Co-authored-by: Merel Theisen <49397448+merelcht@users.noreply.github.com>
  • Loading branch information
jitu5 and merelcht authored Jan 22, 2024
1 parent cb50cb3 commit 4134502
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 21 deletions.
5 changes: 3 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ Please follow the established format:
- Include the ID number for the related PR (or PRs) in parentheses
-->

# Upcoming Release
# Release 7.1.0

## Major features and improvements
- Add build command to the CLI using `kedro viz build` for creating build directory of local Kedro Viz instance with static data. (#1615)
- Add build command `kedro viz build` to the CLI to allow users to create a build directory of local Kedro Viz instance with Kedro project data. (#1697)

## Bug fixes and other changes

- Set Kedro Viz start method to spawn process while launching it from Jupyter Notebook. (#1696)
- Fix bug on Plotly graph rendering. (#1701)

# Release 7.0.0

Expand Down
2 changes: 1 addition & 1 deletion demo-project/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.0.0
7.1.0
2 changes: 1 addition & 1 deletion demo-project/lightsail.json
Original file line number Diff line number Diff line change
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:7.0.0",
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:7.1.0",
"ports": {
"4141": "HTTP"
}
Expand Down
2 changes: 1 addition & 1 deletion 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quantumblack/kedro-viz",
"version": "7.0.0",
"version": "7.1.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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
import warnings

__version__ = "7.0.0"
__version__ = "7.1.0"


class KedroVizPythonVersionWarning(UserWarning):
Expand Down
2 changes: 1 addition & 1 deletion package/kedro_viz/launchers/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def deploy(region, bucket_name):

@viz.command(context_settings={"help_option_names": ["-h", "--help"]})
def build():
"""Create build directory of local Kedro Viz instance with static data"""
"""Create build directory of local Kedro Viz instance with Kedro project data"""

try:
load_and_populate_data(Path.cwd(), ignore_plugins=True)
Expand Down
2 changes: 1 addition & 1 deletion package/tests/test_launchers/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def test_viz_command_group(mocker):
"Visualise a Kedro pipeline using Kedro viz.\n\n"
"Options:\n --help Show this message and exit.\n\n"
"Commands:\n build Create build directory of local Kedro Viz "
"instance with static data\n "
"instance with Kedro...\n "
"deploy Deploy and host Kedro Viz on AWS S3\n "
"run Launch local Kedro Viz instance\x1b[0m"
),
Expand Down
17 changes: 5 additions & 12 deletions src/components/update-reminder/update-reminder-content.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
export const updateContent = {
date: '18 December 2023',
date: '22 January 2024',
features: [
{
title: 'Update CLI command `kedro viz run` which starts Kedro-viz',
title:
'Publish Kedro-viz on any hosting platform using cli `kedro viz build`',
image: '',
copy: '`kedro viz run` is the new way to start Kedro Viz. The old command `kedro viz` is no longer supported',
copy: '`kedro viz build` command that enables you to publish and share Kedro-Viz to any static website hosting platform.',
buttonLink:
'https://docs.kedro.org/projects/kedro-viz/en/latest/share_kedro_viz.html',
buttonText: 'View the docs',
},
{
title: 'Deploy Kedro-viz to AWS using cli `kedro viz deploy`',
image: '',
copy: 'Kedro-Viz can now be deployed directly to AWS by using the command `kedro viz deploy`',
buttonLink:
'https://docs.kedro.org/projects/kedro-viz/en/latest/kedro-viz_visualisation.html',
'https://docs.kedro.org/projects/kedro-viz/en/latest/share_kedro_viz.html#platform-agnostic-sharing-with-kedro-viz',
buttonText: 'View the docs',
},
],
Expand Down

0 comments on commit 4134502

Please sign in to comment.