Skip to content

Commit 8bcf6c8

Browse files
authored
Release 3.8.1 (#1530)
* Update CHANGELOG and README for 3.8.1 * Update plotlywidget version to 0.9.1
1 parent 0a0f2c4 commit 8bcf6c8

File tree

6 files changed

+26
-7
lines changed

6 files changed

+26
-7
lines changed

Diff for: CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,31 @@
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.8.1] - 2019-04-19
6+
7+
### Updated
8+
- Updated Plotly.js to version 1.47.3. See the
9+
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#plotlyjs-changelog)
10+
for more information.
11+
12+
### Fixed
13+
- Fix MathJax rendering in Firefox ([plotly/plotly.js#3783](https://github.com/plotly/plotly.js/pull/3783))
14+
- Fix vertical responsive resizing in exported HTML files
15+
([#1524](https://github.com/plotly/plotly.py/issues/1524),
16+
[1525](https://github.com/plotly/plotly.py/pull/1525))
17+
18+
### Changed
19+
- Reverted change to `layout.legend.itemsizing = 'constant'` in built-in templates
20+
that was made in 3.8.0. This resulted in unexpectedly large legend entries in
21+
some common cases ([#1526](https://github.com/plotly/plotly.py/pull/1526))
22+
523
## [3.8.0] - 2019-04-15
624

725
### Updated
826
- Updated Plotly.js to version 1.47.1. See the
927
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1471----2019-04-10)
1028
for more information.
29+
1130

1231
### Added
1332
- Three new trace types: `sunburst` ([plotly/plotly.js#3594](https://github.com/plotly/plotly.js/pull/3594)),

Diff for: 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.8.0
81+
pip install plotly==3.8.1
8282
```
8383

8484
or conda.
8585
```
86-
conda install -c plotly plotly=3.8.0
86+
conda install -c plotly plotly=3.8.1
8787
```
8888

8989
### Jupyter Notebook Support
@@ -126,7 +126,7 @@ set NODE_OPTIONS=--max-old-space-size=4096
126126
jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.38 --no-build
127127
128128
# FigureWidget support
129-
jupyter labextension install plotlywidget@0.9.0 --no-build
129+
jupyter labextension install plotlywidget@0.9.1 --no-build
130130
131131
# offline iplot support
132132
jupyter labextension install @jupyterlab/plotly-extension@0.18.2 --no-build

Diff for: js/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: js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plotlywidget",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "The plotly.py ipywidgets library",
55
"author": "The plotly.py team",
66
"license": "MIT",

Diff for: 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__ = '0.9.0'
5+
__frontend_version__ = '0.9.1'

Diff for: plotlywidget/static/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12642,7 +12642,7 @@ module.exports = function identity(d) { return d; };
1264212642
/* 19 */
1264312643
/***/ (function(module, exports) {
1264412644

12645-
module.exports = {"name":"plotlywidget","version":"0.9.0","description":"The plotly.py ipywidgets library","author":"The plotly.py team","license":"MIT","main":"src/index.js","repository":{"type":"git","url":"https://github.com/plotly/plotly.py"},"keywords":["jupyter","widgets","ipython","ipywidgets","plotly"],"files":["src/**/*.js","dist/*.js"],"scripts":{"clean":"rimraf dist/ && rimraf ../plotlywidget/static","prepublish":"webpack","test":"echo \"Error: no test specified\" && exit 1"},"devDependencies":{"webpack":"^3.10.0","rimraf":"^2.6.1","ify-loader":"^1.1.0"},"dependencies":{"plotly.js":"1.47.3","@jupyter-widgets/base":"^1.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin"}}
12645+
module.exports = {"name":"plotlywidget","version":"0.9.1","description":"The plotly.py ipywidgets library","author":"The plotly.py team","license":"MIT","main":"src/index.js","repository":{"type":"git","url":"https://github.com/plotly/plotly.py"},"keywords":["jupyter","widgets","ipython","ipywidgets","plotly"],"files":["src/**/*.js","dist/*.js"],"scripts":{"clean":"rimraf dist/ && rimraf ../plotlywidget/static","prepublish":"webpack","test":"echo \"Error: no test specified\" && exit 1"},"devDependencies":{"webpack":"^3.10.0","rimraf":"^2.6.1","ify-loader":"^1.1.0"},"dependencies":{"plotly.js":"1.47.3","@jupyter-widgets/base":"^1.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin"}}
1264612646

1264712647
/***/ }),
1264812648
/* 20 */

0 commit comments

Comments
 (0)