From e7eb42d2be75e4e61747fa81e9e96da1ad73fcd4 Mon Sep 17 00:00:00 2001 From: Nicolas Kruchten Date: Thu, 27 Oct 2022 13:02:05 -0400 Subject: [PATCH] version changes for 5.11.0 --- CHANGELOG.md | 4 ++-- 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 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b48c57e9f..b9d3cc37f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## UNRELEASED +## [5.11.0] - 2022-10-27 ### Updated - Updated Plotly.js to from version 2.14.0 to version 2.16.1. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2161----2022-10-21) for more information. Notable changes include: @@ -13,7 +13,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Add `minreducedwidth` and `minreducedheight` to layout for increasing control over automargin [[#6307](https://github.com/plotly/plotly.js/pull/6307)] - Add `entrywidth` and `entrywidthmode` to legend [[#6202](https://github.com/plotly/plotly.js/pull/6202), [#6324](https://github.com/plotly/plotly.js/pull/6324)] -## [5.10.0] - 2022-08-11 +## [5.10.0] - 2022-08-11 ### Updated - Updated Plotly.js to from version 2.12.1 to version 2.14.0. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2140----2022-08-10) for more information. Notable changes include: diff --git a/README.md b/README.md index 6d74c73797..f598cfde57 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ ## Quickstart -`pip install plotly==5.10.0` +`pip install plotly==5.11.0` Inside [Jupyter](https://jupyter.org/install) (installable with `pip install "jupyterlab>=3" "ipywidgets>=7.6"`): @@ -78,13 +78,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.10.0 +pip install plotly==5.11.0 ``` or conda. ``` -conda install -c plotly plotly=5.10.0 +conda install -c plotly plotly=5.11.0 ``` ### JupyterLab Support @@ -106,7 +106,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.10.0 @jupyter-widgets/jupyterlab-manager +jupyter labextension install jupyterlab-plotly@5.11.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 a1f698645e..646567cd4b 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.10.0", + "version": "5.11.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/javascript/jupyterlab-plotly/package.json b/packages/javascript/jupyterlab-plotly/package.json index 73cea72ac8..516f017c63 100644 --- a/packages/javascript/jupyterlab-plotly/package.json +++ b/packages/javascript/jupyterlab-plotly/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-plotly", - "version": "5.10.0", + "version": "5.11.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 23ea7d1604..6816f52d8c 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.10.0" +__frontend_version__ = "^5.11.0"