Skip to content

Commit fec9c18

Browse files
committed
better descriptions in CHANGELOG/broguht version number back to 1.12.10 (since unpublished ver #)
1 parent c483a8c commit fec9c18

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

+19-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,25 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1616

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

2239
## [1.12.9] - 2016-08-22
2340
### 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):

plotly/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.12.11'
1+
__version__ = '1.12.10'

0 commit comments

Comments
 (0)