Skip to content

Release 3.6.0 #1412

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Feb 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,50 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.6.0] - 2019-02-01

### Updated
- Updated Plotly.js to version 1.44.1. Select highlights included below.
See the
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1441----2019-01-24)
for more information.

### Added
- Add isosurface gl3d trace type
([plotly/plotly.js#3438](https://github.com/plotly/plotly.js/pull/3438))
- Preview of ternary contour figure factory
([#1413](https://github.com/plotly/plotly.py/pull/1413)). Special thanks to
[@emmanuelle](https://github.com/emmanuelle) for this contribution!
- Add support for `line.color` colorbars for scatter3d traces
([#1085](https://github.com/plotly/plotly.py/issues/1085),
[plotly/plotly.js#3384](https://github.com/plotly/plotly.js/pull/3384))
- Add support for `hovertemplate` on `scatterpolar`, `scatterpolargl`,
`scatterternary`, `barpolar`, `choropleth`, `scattergeo`, and
`scattermapbox` trace
([plotly/plotly.js#3398](https://github.com/plotly/plotly.js/pull/3398),
[plotly/plotly.js#3436](https://github.com/plotly/plotly.js/pull/3436))
- Add width attribute to box and violin traces
([plotly/plotly.js#3234](https://github.com/plotly/plotly.js/pull/3234))
- Add support for `<sup>`, `<sup>`, `<b>`, `<i>` and `<em>` pseudo-html
tags in extra (aka trace "name") hover labels
([plotly/plotly.js#3443](https://github.com/plotly/plotly.js/pull/3443))
- Add 4 additional colors to the colorway cycle of the plotly themes
([#1408](https://github.com/plotly/plotly.py/pull/1408))
- Automatically coerce array-like objects (e.g. xarray `DataArray`s) to
numpy arrays
([#1393](https://github.com/plotly/plotly.py/pull/1393)). Special thanks to
[@malmaud](https://github.com/malmaud) for this contribution!

### Fixed
- Fix annotated heatmap text color when values are specified as a nested list
([#1300](https://github.com/plotly/plotly.py/issues/1300))
- Fix `update` method with legacy `title*` properties
([#1403](https://github.com/plotly/plotly.py/issues/1403))
- Fix deprecation warnings on Python 3.7 and ipywidgets > 7.0
([#1417](https://github.com/plotly/plotly.py/pull/1417)). Special thanks to
[@Juanlu001](https://github.com/Juanlu001) for this contribution!


## [3.5.0] - 2019-01-04

### Updated
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ 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==3.5.0
pip install plotly==3.6.0
```

or conda.
```
conda install -c plotly plotly=3.5.0
conda install -c plotly/label/test plotly=3.6.0
```

### Jupyter Notebook Support
Expand Down Expand Up @@ -126,7 +126,7 @@ set NODE_OPTIONS=--max-old-space-size=4096
jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.38 --no-build

# FigureWidget support
jupyter labextension install plotlywidget@0.6.0 --no-build
jupyter labextension install plotlywidget@0.7.0 --no-build

# offline iplot support
jupyter labextension install @jupyterlab/plotly-extension@0.18.1 --no-build
Expand Down
29 changes: 15 additions & 14 deletions js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plotlywidget",
"version": "0.7.0-rc.1",
"version": "0.7.0",
"description": "The plotly.py ipywidgets library",
"author": "The plotly.py team",
"license": "MIT",
Expand Down Expand Up @@ -31,7 +31,7 @@
"ify-loader": "^1.1.0"
},
"dependencies": {
"plotly.js": "1.44.0",
"plotly.js": "1.44.1",
"@jupyter-widgets/base": "^1.0.0",
"lodash": "^4.17.4"
},
Expand Down
2 changes: 1 addition & 1 deletion plotly/offline/_plotlyjs_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# DO NOT EDIT
# This file is generated by the updatebundle setup.py command
__plotlyjs_version__ = '1.44.0'
__plotlyjs_version__ = '1.44.1'
4 changes: 2 additions & 2 deletions plotly/package_data/plotly.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions plotly/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__version__ = '3.6.0rc1'
__frontend_version__ = '^0.7.0-rc.1'
__version__ = '3.6.0'
__frontend_version__ = '^0.7.0'


def stable_semver():
Expand Down
Loading