diff --git a/RELEASE.md b/RELEASE.md index 4c83db9ffa..d43aefe3c2 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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 diff --git a/demo-project/.version b/demo-project/.version index cd802a1ec4..ba92e72f57 100644 --- a/demo-project/.version +++ b/demo-project/.version @@ -1 +1 @@ -6.6.0 \ No newline at end of file +6.6.1 \ No newline at end of file diff --git a/demo-project/lightsail.json b/demo-project/lightsail.json index a5c471df52..fa220b8b84 100644 --- a/demo-project/lightsail.json +++ b/demo-project/lightsail.json @@ -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" } diff --git a/package-lock.json b/package-lock.json index 8b41646da5..138ebc00ab 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@quantumblack/kedro-viz", - "version": "6.6.0", + "version": "6.6.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 0b9a674d32..4be8bbe84e 100644 --- a/package.json +++ b/package.json @@ -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": [ diff --git a/package/kedro_viz/__init__.py b/package/kedro_viz/__init__.py index 49d2101154..fb19b22912 100644 --- a/package/kedro_viz/__init__.py +++ b/package/kedro_viz/__init__.py @@ -2,7 +2,7 @@ import sys import warnings -__version__ = "6.6.0" +__version__ = "6.6.1" class KedroVizPythonVersionWarning(UserWarning): diff --git a/src/components/update-reminder/update-reminder-content.js b/src/components/update-reminder/update-reminder-content.js index 5f83a1f3e7..b8e2152ce2 100644 --- a/src/components/update-reminder/update-reminder-content.js +++ b/src/components/update-reminder/update-reminder-content.js @@ -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: '', }, ], };