From 85c77b4b5cf9e4ee7ae74b3597ee7ff334dc4dd2 Mon Sep 17 00:00:00 2001 From: Nicolas Kruchten Date: Mon, 20 Dec 2021 22:24:45 -0500 Subject: [PATCH 1/2] release v5.5.0 --- CHANGELOG.md | 2 +- README.md | 8 ++++---- packages/javascript/jupyterlab-plotly/package-lock.json | 2 +- packages/javascript/jupyterlab-plotly/package.json | 2 +- packages/python/plotly/plotly/_widget_version.py | 2 +- release.md | 1 - 6 files changed, 8 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f3ec2c8397..c3f2e317920 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## UNRELEASED +## [5.5.0] - 2021-12-20 ### Added diff --git a/README.md b/README.md index 17e186775b7..4a13a8a96e0 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ ## Quickstart -`pip install plotly==5.4.0` +`pip install plotly==5.5.0` Inside [Jupyter](https://jupyter.org/install) (installable with `pip install "jupyterlab>=3" "ipywidgets>=7.6"`): @@ -79,13 +79,13 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is plotly.py may be installed using pip... ``` -pip install plotly==5.4.0 +pip install plotly==5.5.0 ``` or conda. ``` -conda install -c plotly plotly=5.4.0 +conda install -c plotly plotly=5.5.0 ``` ### JupyterLab Support @@ -107,7 +107,7 @@ The instructions above apply to JupyterLab 3.x. **For JupyterLab 2 or earlier**, ``` # JupyterLab 2.x renderer support -jupyter labextension install jupyterlab-plotly@5.4.0 @jupyter-widgets/jupyterlab-manager +jupyter labextension install jupyterlab-plotly@5.5.0 @jupyter-widgets/jupyterlab-manager ``` Please check out our [Troubleshooting guide](https://plotly.com/python/troubleshooting/) if you run into any problems with JupyterLab. diff --git a/packages/javascript/jupyterlab-plotly/package-lock.json b/packages/javascript/jupyterlab-plotly/package-lock.json index 74eb2a0df85..20ee1971ee6 100644 --- a/packages/javascript/jupyterlab-plotly/package-lock.json +++ b/packages/javascript/jupyterlab-plotly/package-lock.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-plotly", - "version": "5.4.0", + "version": "5.5.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/javascript/jupyterlab-plotly/package.json b/packages/javascript/jupyterlab-plotly/package.json index 6d9c7adf4a6..eb5cb31463f 100644 --- a/packages/javascript/jupyterlab-plotly/package.json +++ b/packages/javascript/jupyterlab-plotly/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-plotly", - "version": "5.4.0", + "version": "5.5.0", "description": "The plotly Jupyter extension", "author": "The plotly.py team", "license": "MIT", diff --git a/packages/python/plotly/plotly/_widget_version.py b/packages/python/plotly/plotly/_widget_version.py index 585af578fa3..813edaa9460 100644 --- a/packages/python/plotly/plotly/_widget_version.py +++ b/packages/python/plotly/plotly/_widget_version.py @@ -2,4 +2,4 @@ # for automated dev builds # # It is edited by hand prior to official releases -__frontend_version__ = "^5.4.0" +__frontend_version__ = "^5.5.0" diff --git a/release.md b/release.md index 82a1dad677d..07df8b0a0e7 100644 --- a/release.md +++ b/release.md @@ -43,7 +43,6 @@ specified below. + Ensure you're using `node` version 12 and `npm` version 6 to minimize diffs to `package-lock.json` + Ensure you're in a Python virtual environment with JupyterLab 3 installed + Run `rm -rf node_modules && npm install && npm run clean && npm run build:prod` - - This the last good time to install the extensions locally and check that everything works in dev mode - Run `git diff` and ensure that only the files you modified and the build artifacts have changed - Ensure that the diff in `package-lock.json` seems sane - Commit and tag but *don't push* until after everything is available on NPM/PyPI/Conda (see below): From b7ae20514e18c5e428a08aee5547666ae005d903 Mon Sep 17 00:00:00 2001 From: Nicolas Kruchten Date: Mon, 20 Dec 2021 22:49:11 -0500 Subject: [PATCH 2/2] bump doc reqs --- binder/requirements.txt | 2 +- doc/apidoc/conf.py | 2 +- doc/python/getting-started.md | 6 +++--- doc/requirements.txt | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/binder/requirements.txt b/binder/requirements.txt index 96dcb73b00b..3df47fc5bdd 100644 --- a/binder/requirements.txt +++ b/binder/requirements.txt @@ -1,5 +1,5 @@ jupytext -plotly==5.4.0 +plotly==5.5.0 jupyter notebook pandas==1.0.3 diff --git a/doc/apidoc/conf.py b/doc/apidoc/conf.py index 621a50823a1..2f92b85fa04 100644 --- a/doc/apidoc/conf.py +++ b/doc/apidoc/conf.py @@ -28,7 +28,7 @@ # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "5.4.0" +release = "5.5.0" # -- General configuration --------------------------------------------------- diff --git a/doc/python/getting-started.md b/doc/python/getting-started.md index 42f78f64674..975e165861f 100644 --- a/doc/python/getting-started.md +++ b/doc/python/getting-started.md @@ -58,13 +58,13 @@ We also encourage you to join the [Plotly Community Forum](http://community.plot `plotly` may be installed using `pip`: ``` -$ pip install plotly==5.4.0 +$ pip install plotly==5.5.0 ``` or `conda`: ``` -$ conda install -c plotly plotly=5.4.0 +$ conda install -c plotly plotly=5.5.0 ``` This package contains everything you need to write figures to standalone HTML files. @@ -148,7 +148,7 @@ The instructions above apply to JupyterLab 3.x. **For JupyterLab 2 or earlier**, ``` # JupyterLab 2.x renderer support -jupyter labextension install jupyterlab-plotly@5.4.0 @jupyter-widgets/jupyterlab-manager +jupyter labextension install jupyterlab-plotly@5.5.0 @jupyter-widgets/jupyterlab-manager ``` Please check out our [Troubleshooting guide](/python/troubleshooting/) if you run into any problems with JupyterLab, particularly if you are using multiple python environments inside Jupyter. diff --git a/doc/requirements.txt b/doc/requirements.txt index b47a08fea85..99d338f2d40 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1,4 +1,4 @@ -plotly==5.4.0 +plotly==5.5.0 jupytext==1.1.1 jupyter-client<7 jupyter