From 7d9c7a36ca47f4e80625c36a9bf47016a0e0745a Mon Sep 17 00:00:00 2001 From: Adam Kulidjian Date: Tue, 22 Nov 2016 19:11:02 -0500 Subject: [PATCH 1/4] bump version to 1.12.11 --- plotly/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotly/version.py b/plotly/version.py index dca340c2c45..e55c47af9ff 100644 --- a/plotly/version.py +++ b/plotly/version.py @@ -1 +1 @@ -__version__ = '1.12.10' +__version__ = '1.12.11' From c483a8c7daf43e62eb483106313016e9b65496dc Mon Sep 17 00:00:00 2001 From: Adam Kulidjian Date: Wed, 23 Nov 2016 11:15:32 -0500 Subject: [PATCH 2/4] update CHANGELOG --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7da0d1bd45..8cf07d2c294 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] + +## [1.12.10] - 2016-11-23 ### Updated - `FF.create_violin` and `FF.create_scatterplotmatrix` now by default do not print subplot grid information in output From fec9c18e59351051e1e9aa19f6d54f948daf3d6b Mon Sep 17 00:00:00 2001 From: Adam Kulidjian Date: Wed, 23 Nov 2016 13:02:22 -0500 Subject: [PATCH 3/4] better descriptions in CHANGELOG/broguht version number back to 1.12.10 (since unpublished ver #) --- CHANGELOG.md | 21 +++++++++++++++++++-- plotly/offline/offline.py | 1 + plotly/version.py | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cf07d2c294..37b70e29e3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,8 +16,25 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Trisurf now uses correct `Plotly Colorscales` when called -- `iplot()` and `plot()` now work offline -- uploading grids via `py.upload()` now replaces columns in grid with `id` of the form `fid:uid`, not `fid/uid` +- list of `configkeys` added to hidden function `plotly.offline._plot_html` in addition to `show_link` and `link_text` which can be set in the function signatures of the functions in `plotly.offline`. No change for the user. +- Fixed a bug in the format of unique-identifiers in columns of grids that are uploaded to plotly via `plotly.plotly.upload`. See https://github.com/plotly/plotly.py/pull/599 for details. In particular, creating plots that are based off of plotly grids is no longer broken. Here is an example: + +``` +import plotly.plotly as py +from plotly.grid_objs import Grid, Column + +c1 = Column([6, 6, 6, 5], 'column 1') +c2 = Column(['a', 'b', 'c', 'd'], 'column 2') +g = Grid([c1, c2]) + +# Upload the grid +py.grid_ops.upload(g, 'my-grid', auto_open=False) + +# Make a graph that with data that is referenced from that grid +trace = Scatter(xsrc=g[0], ysrc=g[1]) +url = py.plot([trace], filename='my-plot') +``` +Then, whenever you update the data in `'my-grid'`, the associated plot will update too. See https://plot.ly/python/data-api for more details on usage and examples. ## [1.12.9] - 2016-08-22 ### Fixed diff --git a/plotly/offline/offline.py b/plotly/offline/offline.py index 96645804abc..2e788ca8350 100644 --- a/plotly/offline/offline.py +++ b/plotly/offline/offline.py @@ -253,6 +253,7 @@ def _plot_html(figure_or_data, config, validate, default_width, return plotly_html_div, plotdivid, width, height + def iplot(figure_or_data, show_link=True, link_text='Export to plot.ly', validate=True, image=None, filename='plot_image', image_width=800, image_height=600): diff --git a/plotly/version.py b/plotly/version.py index e55c47af9ff..dca340c2c45 100644 --- a/plotly/version.py +++ b/plotly/version.py @@ -1 +1 @@ -__version__ = '1.12.11' +__version__ = '1.12.10' From 5e8338c0d7bf1f609108abce7e708541ddb27a7f Mon Sep 17 00:00:00 2001 From: Adam Kulidjian Date: Wed, 23 Nov 2016 14:21:17 -0500 Subject: [PATCH 4/4] removed section about broken offline - not broken in pip package it turns out --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37b70e29e3d..0e725418236 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,6 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Trisurf now uses correct `Plotly Colorscales` when called -- list of `configkeys` added to hidden function `plotly.offline._plot_html` in addition to `show_link` and `link_text` which can be set in the function signatures of the functions in `plotly.offline`. No change for the user. - Fixed a bug in the format of unique-identifiers in columns of grids that are uploaded to plotly via `plotly.plotly.upload`. See https://github.com/plotly/plotly.py/pull/599 for details. In particular, creating plots that are based off of plotly grids is no longer broken. Here is an example: ```