diff --git a/CHANGELOG.md b/CHANGELOG.md index 535a008d245..fcd11c30e60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,16 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [5.8.1] - 2022-06-08 +## [5.8.2] - 2022-06-10 ### Fixed - Fixed a syntax error that caused rendering issues in Databricks notebooks and likely elsewhere. [#3763](https://github.com/plotly/plotly.py/pull/3763) with thanks to [@fwetdb](https://github.com/fwetdb) +## [5.8.1] - 2022-06-08 + +(no changes, due to a mixup with the build process!) + ## [5.8.0] - 2022-05-09 diff --git a/README.md b/README.md index 52510f17b72..c40b1de6b7d 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ ## Quickstart -`pip install plotly==5.8.1` +`pip install plotly==5.8.2` 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.8.1 +pip install plotly==5.8.2 ``` or conda. ``` -conda install -c plotly plotly=5.8.1 +conda install -c plotly plotly=5.8.2 ``` ### 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.8.1 @jupyter-widgets/jupyterlab-manager +jupyter labextension install jupyterlab-plotly@5.8.2 @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/binder/requirements.txt b/binder/requirements.txt index a89fb94e621..c2f2b40173e 100644 --- a/binder/requirements.txt +++ b/binder/requirements.txt @@ -1,5 +1,5 @@ jupytext -plotly==5.8.1 +plotly==5.8.2 jupyter notebook pandas==1.0.3 diff --git a/doc/apidoc/conf.py b/doc/apidoc/conf.py index 4f91672f2db..419a2e0c763 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.8.1" +release = "5.8.2" # -- General configuration --------------------------------------------------- diff --git a/doc/python/getting-started.md b/doc/python/getting-started.md index 3d3ba5f782a..21da3e9c668 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.8.1 +$ pip install plotly==5.8.2 ``` or `conda`: ``` -$ conda install -c plotly plotly=5.8.1 +$ conda install -c plotly plotly=5.8.2 ``` 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.8.1 @jupyter-widgets/jupyterlab-manager +jupyter labextension install jupyterlab-plotly@5.8.2 @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 f77ad40740a..51ea2a90272 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1,4 +1,4 @@ -plotly==5.8.1 +plotly==5.8.2 jupytext==1.1.1 jupyter-client<7 jupyter diff --git a/packages/javascript/jupyterlab-plotly/package-lock.json b/packages/javascript/jupyterlab-plotly/package-lock.json index bb834e4791e..14f0a0d056b 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.8.1", + "version": "5.8.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/javascript/jupyterlab-plotly/package.json b/packages/javascript/jupyterlab-plotly/package.json index 4bb9852a567..235703f0c7e 100644 --- a/packages/javascript/jupyterlab-plotly/package.json +++ b/packages/javascript/jupyterlab-plotly/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-plotly", - "version": "5.8.1", + "version": "5.8.2", "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 3c870f11013..591a8c7b694 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.8.1" +__frontend_version__ = "^5.8.2"