Skip to content

Commit 73be67c

Browse files
upgrade plotly.js to 1.56.0 and tag 4.11.0
1 parent 8289eb1 commit 73be67c

File tree

338 files changed

+9762
-1203
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

338 files changed

+9762
-1203
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [4.11.0] - 2020-10-01
6+
7+
### Updated
8+
9+
- Updated Plotly.js to version 1.56.0. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/v1.56.0/CHANGELOG.md) for more information. These changes are reflected in the auto-generated `plotly.graph_objects` module.
10+
511
## [4.10.0] - 2020-09-10
612

713
### Added

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
## Quickstart
3535

36-
`pip install plotly==4.10.0`
36+
`pip install plotly==4.11.0`
3737

3838
Inside [Jupyter notebook](https://jupyter.org/install) (installable with `pip install "notebook>=5.3" "ipywidgets>=7.2"`):
3939

@@ -82,13 +82,13 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is
8282
plotly.py may be installed using pip...
8383

8484
```
85-
pip install plotly==4.10.0
85+
pip install plotly==4.11.0
8686
```
8787

8888
or conda.
8989

9090
```
91-
conda install -c plotly plotly=4.10.0
91+
conda install -c plotly plotly=4.11.0
9292
```
9393

9494
### Jupyter Notebook Support
@@ -125,10 +125,10 @@ Then run the following commands to install the required JupyterLab extensions (n
125125

126126
```
127127
# Basic JupyterLab renderer support
128-
jupyter labextension install jupyterlab-plotly@4.10.0
128+
jupyter labextension install jupyterlab-plotly@4.11.0
129129
130130
# OPTIONAL: Jupyter widgets extension for FigureWidget support
131-
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.10.0
131+
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.11.0
132132
```
133133

134134
Please check out our [Troubleshooting guide](https://plotly.com/python/troubleshooting/) if you run into any problems with JupyterLab.

doc/apidoc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# The short X.Y version
2929
version = ""
3030
# The full version, including alpha/beta/rc tags
31-
release = "4.10.0"
31+
release = "4.11.0"
3232

3333

3434
# -- General configuration ---------------------------------------------------

doc/python/getting-started.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ We also encourage you to join the [Plotly Community Forum](http://community.plot
5959
`plotly` may be installed using pip...
6060

6161
```
62-
$ pip install plotly==4.10.0
62+
$ pip install plotly==4.11.0
6363
```
6464

6565
or conda.
6666

6767
```
68-
$ conda install -c plotly plotly=4.10.0
68+
$ conda install -c plotly plotly=4.11.0
6969
```
7070

7171
This package contains everything you need to write figures to standalone HTML files.
@@ -144,10 +144,10 @@ Then run the following commands to install the required JupyterLab extensions (n
144144

145145
```
146146
# JupyterLab renderer support
147-
jupyter labextension install jupyterlab-plotly@4.10.0
147+
jupyter labextension install jupyterlab-plotly@4.11.0
148148
149149
# OPTIONAL: Jupyter widgets extension
150-
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.10.0
150+
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.11.0
151151
```
152152

153153
These packages contain everything you need to run JupyterLab...

0 commit comments

Comments
 (0)