Skip to content

Commit 618ee2d

Browse files
authored
Release 3.4.2 (#1285)
* Updated changelog for 3.4.2 * Updated README installation instructions * Update versions to plotly.py 3.4.2 and plotlywidget 0.5.2
1 parent dffa93a commit 618ee2d

File tree

7 files changed

+22
-10
lines changed

7 files changed

+22
-10
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
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.4.2] - 2018-11-23
6+
7+
### Fixed
8+
- `config` options are now supported when using `plotly.offline.iplot` to
9+
display a figure in JupyterLab. Requires version 0.18.1 of the
10+
`@jupyterlab/plotly-extension` extension.
11+
([#1281](https://github.com/plotly/plotly.py/pull/1281),
12+
[jupyterlab/jupyter-renderers#168](https://github.com/jupyterlab/jupyter-renderers/pull/168))
13+
- Custom `plotly_domain` values are now supported in FigureWidget in both
14+
the classic notebook and JupyterLab
15+
([#1284](https://github.com/plotly/plotly.py/pull/1284))
16+
517
## [3.4.1] - 2018-11-09
618

719
### Updated

README.md

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

5555
plotly.py may be installed using pip...
5656
```
57-
pip install plotly==3.4.1
57+
pip install plotly==3.4.2
5858
```
5959

6060
or conda.
6161
```
62-
conda install -c plotly plotly=3.4.1
62+
conda install -c plotly plotly=3.4.2
6363
```
6464

6565
### Jupyter Notebook Support
@@ -102,10 +102,10 @@ set NODE_OPTIONS=--max-old-space-size=4096
102102
jupyter labextension install @jupyter-widgets/[email protected] --no-build
103103
104104
# FigureWidget support
105-
jupyter labextension install [email protected].1 --no-build
105+
jupyter labextension install [email protected].2 --no-build
106106
107107
# offline iplot support
108-
jupyter labextension install @jupyterlab/[email protected] --no-build
108+
jupyter labextension install @jupyterlab/[email protected].1 --no-build
109109
110110
# JupyterLab chart editor support (optional)
111111
jupyter labextension install [email protected] --no-build

js/package-lock.json

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

js/package.json

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

plotly/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
__version__ = '3.4.1'
2-
__frontend_version__ = '^0.5.1'
1+
__version__ = '3.4.2'
2+
__frontend_version__ = '^0.5.2'
33

44

55
def stable_semver():

plotlywidget/static/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12554,7 +12554,7 @@ module.exports = function identity(d) { return d; };
1255412554
/* 19 */
1255512555
/***/ (function(module, exports) {
1255612556

12557-
module.exports = {"name":"plotlywidget","version":"0.5.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.42.5","@jupyter-widgets/base":"^1.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin"}}
12557+
module.exports = {"name":"plotlywidget","version":"0.5.2","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.42.5","@jupyter-widgets/base":"^1.0.0","lodash":"^4.17.4"},"jupyterlab":{"extension":"src/jupyterlab-plugin"}}
1255812558

1255912559
/***/ }),
1256012560
/* 20 */

plotlywidget/static/index.js.map

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

0 commit comments

Comments
 (0)