Skip to content

Commit 256e2f4

Browse files
authored
Release 3.6.0 (#1412)
* Update to plotly.js 1.44.1 * 3.6.0 Changelog Entry * Update README with 3.6.0 instructions
1 parent 7978caf commit 256e2f4

File tree

9 files changed

+149
-101
lines changed

9 files changed

+149
-101
lines changed

CHANGELOG.md

+44
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,50 @@
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+
## [3.6.0] - 2019-02-01
6+
7+
### Updated
8+
- Updated Plotly.js to version 1.44.1. Select highlights included below.
9+
See the
10+
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1441----2019-01-24)
11+
for more information.
12+
13+
### Added
14+
- Add isosurface gl3d trace type
15+
([plotly/plotly.js#3438](https://github.com/plotly/plotly.js/pull/3438))
16+
- Preview of ternary contour figure factory
17+
([#1413](https://github.com/plotly/plotly.py/pull/1413)). Special thanks to
18+
[@emmanuelle](https://github.com/emmanuelle) for this contribution!
19+
- Add support for `line.color` colorbars for scatter3d traces
20+
([#1085](https://github.com/plotly/plotly.py/issues/1085),
21+
[plotly/plotly.js#3384](https://github.com/plotly/plotly.js/pull/3384))
22+
- Add support for `hovertemplate` on `scatterpolar`, `scatterpolargl`,
23+
`scatterternary`, `barpolar`, `choropleth`, `scattergeo`, and
24+
`scattermapbox` trace
25+
([plotly/plotly.js#3398](https://github.com/plotly/plotly.js/pull/3398),
26+
[plotly/plotly.js#3436](https://github.com/plotly/plotly.js/pull/3436))
27+
- Add width attribute to box and violin traces
28+
([plotly/plotly.js#3234](https://github.com/plotly/plotly.js/pull/3234))
29+
- Add support for `<sup>`, `<sup>`, `<b>`, `<i>` and `<em>` pseudo-html
30+
tags in extra (aka trace "name") hover labels
31+
([plotly/plotly.js#3443](https://github.com/plotly/plotly.js/pull/3443))
32+
- Add 4 additional colors to the colorway cycle of the plotly themes
33+
([#1408](https://github.com/plotly/plotly.py/pull/1408))
34+
- Automatically coerce array-like objects (e.g. xarray `DataArray`s) to
35+
numpy arrays
36+
([#1393](https://github.com/plotly/plotly.py/pull/1393)). Special thanks to
37+
[@malmaud](https://github.com/malmaud) for this contribution!
38+
39+
### Fixed
40+
- Fix annotated heatmap text color when values are specified as a nested list
41+
([#1300](https://github.com/plotly/plotly.py/issues/1300))
42+
- Fix `update` method with legacy `title*` properties
43+
([#1403](https://github.com/plotly/plotly.py/issues/1403))
44+
- Fix deprecation warnings on Python 3.7 and ipywidgets > 7.0
45+
([#1417](https://github.com/plotly/plotly.py/pull/1417)). Special thanks to
46+
[@Juanlu001](https://github.com/Juanlu001) for this contribution!
47+
48+
549
## [3.5.0] - 2019-01-04
650

751
### Updated

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is
7878

7979
plotly.py may be installed using pip...
8080
```
81-
pip install plotly==3.5.0
81+
pip install plotly==3.6.0
8282
```
8383

8484
or conda.
8585
```
86-
conda install -c plotly plotly=3.5.0
86+
conda install -c plotly/label/test plotly=3.6.0
8787
```
8888

8989
### Jupyter Notebook Support
@@ -126,7 +126,7 @@ set NODE_OPTIONS=--max-old-space-size=4096
126126
jupyter labextension install @jupyter-widgets/[email protected] --no-build
127127
128128
# FigureWidget support
129-
jupyter labextension install plotlywidget@0.6.0 --no-build
129+
jupyter labextension install plotlywidget@0.7.0 --no-build
130130
131131
# offline iplot support
132132
jupyter labextension install @jupyterlab/[email protected] --no-build

js/package-lock.json

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

js/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plotlywidget",
3-
"version": "0.7.0-rc.1",
3+
"version": "0.7.0",
44
"description": "The plotly.py ipywidgets library",
55
"author": "The plotly.py team",
66
"license": "MIT",
@@ -31,7 +31,7 @@
3131
"ify-loader": "^1.1.0"
3232
},
3333
"dependencies": {
34-
"plotly.js": "1.44.0",
34+
"plotly.js": "1.44.1",
3535
"@jupyter-widgets/base": "^1.0.0",
3636
"lodash": "^4.17.4"
3737
},

plotly/offline/_plotlyjs_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# DO NOT EDIT
22
# This file is generated by the updatebundle setup.py command
3-
__plotlyjs_version__ = '1.44.0'
3+
__plotlyjs_version__ = '1.44.1'

plotly/package_data/plotly.min.js

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

plotly/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
__version__ = '3.6.0rc1'
2-
__frontend_version__ = '^0.7.0-rc.1'
1+
__version__ = '3.6.0'
2+
__frontend_version__ = '^0.7.0'
33

44

55
def stable_semver():

0 commit comments

Comments
 (0)