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 v9.2.0 #2001

Merged
merged 12 commits into from
Jul 29, 2024
8 changes: 8 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@
- Fix packaging. (#1766)
- Adjust requirements file and dependabot versioning strategy. (#1978)
- Refactor CommandCopier component. (#1998)
- Set `isPrettyName` toggle to False by Default. (#1958)
- Add `-p` argument option for `kedro viz` to align with kedro pipeline options. (#1961)
- Replace `data-heap-event` with standardised `data-test` for Cypress and Telemetry. (#1995)

## Community contributions

Many thanks to the following Kedroids for contributing PR to this release:

Check warning on line 38 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L38

[Kedro-viz.weaselwords] 'Many' is a weasel word!
Raw output
{"message": "[Kedro-viz.weaselwords] 'Many' is a weasel word!", "location": {"path": "RELEASE.md", "range": {"start": {"line": 38, "column": 1}}}, "severity": "WARNING"}

Check warning on line 38 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L38

[Kedro-viz.Spellings] Did you really mean 'Kedroids'?
Raw output
{"message": "[Kedro-viz.Spellings] Did you really mean 'Kedroids'?", "location": {"path": "RELEASE.md", "range": {"start": {"line": 38, "column": 30}}}, "severity": "WARNING"}
* [Vlad Cozma](https://github.com/VladCozma)

Check warning on line 39 in RELEASE.md

View workflow job for this annotation

GitHub Actions / vale

[vale] RELEASE.md#L39

[Kedro-viz.Spellings] Did you really mean 'Cozma'?
Raw output
{"message": "[Kedro-viz.Spellings] Did you really mean 'Cozma'?", "location": {"path": "RELEASE.md", "range": {"start": {"line": 39, "column": 9}}}, "severity": "WARNING"}

# Release 9.1.0

Expand Down
2 changes: 1 addition & 1 deletion demo-project/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.1.0
9.2.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:9.1.0",
"image": "public.ecr.aws/g0x0s3o2/kedro-viz-live-demo:9.2.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": "9.1.0",
"version": "9.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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
import warnings

__version__ = "9.1.0"
__version__ = "9.2.0"


class KedroVizPythonVersionWarning(UserWarning):
Expand Down
34 changes: 17 additions & 17 deletions src/components/update-reminder/update-reminder-content.js

Large diffs are not rendered by default.

Loading