Navigation Menu

Skip to content

Commit

Permalink
Release 3.4.2 (#1285)
Browse files Browse the repository at this point in the history
* Updated changelog for 3.4.2
* Updated README installation instructions
* Update versions to plotly.py 3.4.2 and plotlywidget 0.5.2
  • Loading branch information
jonmmease committed Nov 23, 2018
1 parent dffa93a commit 618ee2d
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 10 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,18 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.4.2] - 2018-11-23

### Fixed
- `config` options are now supported when using `plotly.offline.iplot` to
display a figure in JupyterLab. Requires version 0.18.1 of the
`@jupyterlab/plotly-extension` extension.
([#1281](https://github.com/plotly/plotly.py/pull/1281),
[jupyterlab/jupyter-renderers#168](https://github.com/jupyterlab/jupyter-renderers/pull/168))
- Custom `plotly_domain` values are now supported in FigureWidget in both
the classic notebook and JupyterLab
([#1284](https://github.com/plotly/plotly.py/pull/1284))

## [3.4.1] - 2018-11-09

### Updated
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -54,12 +54,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.4.1
pip install plotly==3.4.2
```

or conda.
```
conda install -c plotly plotly=3.4.1
conda install -c plotly plotly=3.4.2
```

### Jupyter Notebook Support
Expand Down Expand Up @@ -102,10 +102,10 @@ 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.5.1 --no-build
jupyter labextension install plotlywidget@0.5.2 --no-build
# offline iplot support
jupyter labextension install @jupyterlab/plotly-extension@0.18 --no-build
jupyter labextension install @jupyterlab/plotly-extension@0.18.1 --no-build
# JupyterLab chart editor support (optional)
jupyter labextension install jupyterlab-chart-editor@1.0 --no-build
Expand Down
2 changes: 1 addition & 1 deletion js/package-lock.json

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

2 changes: 1 addition & 1 deletion js/package.json
@@ -1,6 +1,6 @@
{
"name": "plotlywidget",
"version": "0.5.1",
"version": "0.5.2",
"description": "The plotly.py ipywidgets library",
"author": "The plotly.py team",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions plotly/version.py
@@ -1,5 +1,5 @@
__version__ = '3.4.1'
__frontend_version__ = '^0.5.1'
__version__ = '3.4.2'
__frontend_version__ = '^0.5.2'


def stable_semver():
Expand Down
2 changes: 1 addition & 1 deletion plotlywidget/static/index.js
Expand Up @@ -12554,7 +12554,7 @@ module.exports = function identity(d) { return d; };
/* 19 */
/***/ (function(module, exports) {

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"}}
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"}}

/***/ }),
/* 20 */
Expand Down
2 changes: 1 addition & 1 deletion plotlywidget/static/index.js.map

Large diffs are not rendered by default.

0 comments on commit 618ee2d

Please sign in to comment.