Skip to content

Commit

Permalink
Release v6.6.1 (#1597)
Browse files Browse the repository at this point in the history
* v6.6.1

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

* Update release notes and update reminder content

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

* Update lightsail file

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

* Update release notes

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

---------

Signed-off-by: Tynan DeBold <thdebold@gmail.com>
  • Loading branch information
tynandebold committed Oct 24, 2023
1 parent 7922698 commit 24fbeff
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 13 deletions.
6 changes: 4 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ Please follow the established format:
- Include the ID number for the related PR (or PRs) in parentheses
-->

# Next Release
# Release 6.6.1

## Major features and improvements

- Skip all plugins while running Kedro Viz using the `--ignore-plugins` option. (#1544)
- Skip all plugins while running Kedro-Viz using the `--ignore-plugins` option. (#1544)

## Bug fixes and other changes

- Fix improper display of 'run-command' inside the metadata panel. (#1569)
- Replace semver with packaging. (#1578)
- Fix a bug in Kedro-Viz experiment tracking to ensure compatibility with `kedro-datasets>=1.7.1`. (#1600)

# Release 6.6.0

Expand Down
2 changes: 1 addition & 1 deletion demo-project/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.6.0
6.6.1
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:6.6.0",
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:6.6.1",
"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": "6.6.0",
"version": "6.6.1",
"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__ = "6.6.0"
__version__ = "6.6.1"


class KedroVizPythonVersionWarning(UserWarning):
Expand Down
18 changes: 12 additions & 6 deletions src/components/update-reminder/update-reminder-content.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
export const updateContent = {
date: '10 October 2023',
date: '20 October 2023',
features: [
{
title: 'Make Kedro-Viz shareable via a hosted URL',
title: 'Skipping plugins',
image: '',
copy: 'You can now publish Kedro-Viz and share it with others by hosting your project on Amazon S3, making sharing with collaborators and stakeholders easier and faster.',
buttonLink:
'https://docs.kedro.org/en/latest/visualisation/share_kedro_viz.html',
buttonText: 'View the docs',
copy: 'You can now skip all plugins while running Kedro-Viz by using the --ignore-plugins CLI option.',
buttonLink: '',
buttonText: '',
},
{
title: 'Improved run-command display',
image: '',
copy: "We've fixed the improper display of the run-command within the metadata panel.",
buttonLink: '',
buttonText: '',
},
],
};

0 comments on commit 24fbeff

Please sign in to comment.