Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v6.6.0 #1566

Merged
merged 3 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demo-project/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.5.0
6.6.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:6.5.0",
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:6.6.0",
"ports": {
"4141": "HTTP"
}
Expand Down
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.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quantumblack/kedro-viz",
"version": "6.5.0",
"version": "6.6.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 Expand Up @@ -165,4 +165,4 @@
"not op_mini all"
],
"snyk": true
}
}
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.5.0"
__version__ = "6.6.0"


class KedroVizPythonVersionWarning(UserWarning):
Expand Down
11 changes: 6 additions & 5 deletions src/components/update-reminder/update-reminder-content.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
export const updateContent = {
date: '31 August 2023',
date: '10 October 2023',
features: [
{
title: 'Support for Python 3.11',
title: 'Make Kedro-Viz shareable via a hosted URL',
image: '',
copy: 'Kedro-Viz now supports Python 3.11, and we have removed upper bounds on Python versions. Please note that we will soon discontinue support for Python 3.7. If you are using Python 3.7, we recommend upgrading to Python 3.8 or newer.',
buttonLink: '',
buttonText: '',
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',
},
],
};