Skip to content

Commit f97f2d2

Browse files
Merge branch 'master' into one_group_short_circuit
2 parents 3043324 + 175ec68 commit f97f2d2

File tree

10 files changed

+27
-14
lines changed

10 files changed

+27
-14
lines changed

Diff for: CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,22 @@
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-
## [5.8.1] - 2022-06-08
5+
## UNRELEASED
6+
7+
### Added
8+
9+
- `pattern_shape` options now available in `px.timeline()`
10+
11+
## [5.8.2] - 2022-06-10
612

713
### Fixed
814

915
- 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)
1016

17+
## [5.8.1] - 2022-06-08
18+
19+
(no changes, due to a mixup with the build process!)
20+
1121

1222
## [5.8.0] - 2022-05-09
1323

Diff for: README.md

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

3434
## Quickstart
3535

36-
`pip install plotly==5.8.1`
36+
`pip install plotly==5.8.2`
3737

3838
Inside [Jupyter](https://jupyter.org/install) (installable with `pip install "jupyterlab>=3" "ipywidgets>=7.6"`):
3939

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

8080
```
81-
pip install plotly==5.8.1
81+
pip install plotly==5.8.2
8282
```
8383

8484
or conda.
8585

8686
```
87-
conda install -c plotly plotly=5.8.1
87+
conda install -c plotly plotly=5.8.2
8888
```
8989

9090
### JupyterLab Support
@@ -106,7 +106,7 @@ The instructions above apply to JupyterLab 3.x. **For JupyterLab 2 or earlier**,
106106

107107
```
108108
# JupyterLab 2.x renderer support
109-
jupyter labextension install [email protected].1 @jupyter-widgets/jupyterlab-manager
109+
jupyter labextension install [email protected].2 @jupyter-widgets/jupyterlab-manager
110110
```
111111

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

Diff for: binder/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
jupytext
2-
plotly==5.8.1
2+
plotly==5.8.2
33
jupyter
44
notebook
55
pandas==1.0.3

Diff for: 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 = "5.8.1"
31+
release = "5.8.2"
3232

3333

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

Diff for: doc/python/getting-started.md

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

6060
```
61-
$ pip install plotly==5.8.1
61+
$ pip install plotly==5.8.2
6262
```
6363

6464
or `conda`:
6565

6666
```
67-
$ conda install -c plotly plotly=5.8.1
67+
$ conda install -c plotly plotly=5.8.2
6868
```
6969
This package contains everything you need to write figures to standalone HTML files.
7070

@@ -148,7 +148,7 @@ The instructions above apply to JupyterLab 3.x. **For JupyterLab 2 or earlier**,
148148

149149
```
150150
# JupyterLab 2.x renderer support
151-
jupyter labextension install [email protected].1 @jupyter-widgets/jupyterlab-manager
151+
jupyter labextension install [email protected].2 @jupyter-widgets/jupyterlab-manager
152152
```
153153

154154
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 for: doc/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
plotly==5.8.1
1+
plotly==5.8.2
22
jupytext==1.1.1
33
jupyter-client<7
44
jupyter

Diff for: packages/javascript/jupyterlab-plotly/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: packages/javascript/jupyterlab-plotly/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-plotly",
3-
"version": "5.8.1",
3+
"version": "5.8.2",
44
"description": "The plotly Jupyter extension",
55
"author": "The plotly.py team",
66
"license": "MIT",

Diff for: packages/python/plotly/plotly/_widget_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# for automated dev builds
33
#
44
# It is edited by hand prior to official releases
5-
__frontend_version__ = "^5.8.1"
5+
__frontend_version__ = "^5.8.2"

Diff for: packages/python/plotly/plotly/express/_chart_types.py

+3
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,7 @@ def timeline(
387387
x_end=None,
388388
y=None,
389389
color=None,
390+
pattern_shape=None,
390391
facet_row=None,
391392
facet_col=None,
392393
facet_col_wrap=0,
@@ -402,6 +403,8 @@ def timeline(
402403
labels=None,
403404
color_discrete_sequence=None,
404405
color_discrete_map=None,
406+
pattern_shape_sequence=None,
407+
pattern_shape_map=None,
405408
color_continuous_scale=None,
406409
range_color=None,
407410
color_continuous_midpoint=None,

0 commit comments

Comments
 (0)