Skip to content

Commit f8ce111

Browse files
authored
Merge pull request #615 from plotly/bump-version-number
bump version to 1.12.11
2 parents 5ba9fa7 + 5e8338c commit f8ce111

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

CHANGELOG.md

+20-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
6+
7+
## [1.12.10] - 2016-11-23
68
### Updated
79
- `FF.create_violin` and `FF.create_scatterplotmatrix` now by default do not print subplot grid information in output
810

@@ -14,8 +16,24 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1416

1517
### Fixed
1618
- Trisurf now uses correct `Plotly Colorscales` when called
17-
- `iplot()` and `plot()` now work offline
18-
- uploading grids via `py.upload()` now replaces columns in grid with `id` of the form `fid:uid`, not `fid/uid`
19+
- 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:
20+
21+
```
22+
import plotly.plotly as py
23+
from plotly.grid_objs import Grid, Column
24+
25+
c1 = Column([6, 6, 6, 5], 'column 1')
26+
c2 = Column(['a', 'b', 'c', 'd'], 'column 2')
27+
g = Grid([c1, c2])
28+
29+
# Upload the grid
30+
py.grid_ops.upload(g, 'my-grid', auto_open=False)
31+
32+
# Make a graph that with data that is referenced from that grid
33+
trace = Scatter(xsrc=g[0], ysrc=g[1])
34+
url = py.plot([trace], filename='my-plot')
35+
```
36+
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.
1937

2038
## [1.12.9] - 2016-08-22
2139
### Fixed

plotly/offline/offline.py

+1
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ def _plot_html(figure_or_data, config, validate, default_width,
253253

254254
return plotly_html_div, plotdivid, width, height
255255

256+
256257
def iplot(figure_or_data, show_link=True, link_text='Export to plot.ly',
257258
validate=True, image=None, filename='plot_image', image_width=800,
258259
image_height=600):

0 commit comments

Comments
 (0)