Skip to content

Commit 05a50a8

Browse files
committed
Toyplot version 0.14.0
1 parent 2b46cc5 commit 05a50a8

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

docs/features.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
Features
88
========
99

10-
* Plot types: bar plots, filled region plots, graph visualizations, image visualizations, line plots, matrix plots, scatter plots, tabular plots, text plots.
10+
* Plot types: bar plots, filled region plots, graph visualizations, image visualizations, line plots, matrix plots, numberline plots, scatter plots, tabular plots, text plots.
1111
* Styling: standard CSS, rich text with HTML markup.
1212
* Integrates with Jupyter without any need for plugins, magics, etc.
1313
* Interaction types: display interactive mouse coordinates, export figure data to CSV.
1414
* Interactive output formats: Embeddable, self-contained HTML.
1515
* Static output formats: SVG, PDF, PNG, MP4, WEBM.
16-
* Portability: single code base for Python 2.7 / Python 3.4.
16+
* Portability: single code base for Python 2.7 / Python 3.6.
1717
* Testing: greater-than-95% regression test coverage.
1818

docs/release-notes.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@
77
Release Notes
88
=============
99

10+
Toyplot 0.14.0 - April 17, 2017
11+
-------------------------------
12+
13+
* Completely new text layout that explicitly positions all text.
14+
* Experimental support for hyperlinks in table cells.
15+
* Return a scalar instead of an array when accessing toyplot.data.Table using a single column name and row index.
16+
* Correct a bug that caused text baselines to be computed incorrectly in PDF output.
17+
* Add pylint to the regression test suite.
18+
* Allow font-family to be used in inline rich text styles.
19+
* Created an API to retrieve font metrics.
20+
* Disable obnoxious colormath logging by default.
21+
* Mention XML escaping for rich text in the user guide.
22+
* The "<" and ">" markers were rendered reversed.
23+
* Eliminate warnings using a Pandas series as the baseline for a bar plot.
24+
* Make it easier to disable graph vertex labels.
25+
* Allow stroke-linecap for CSS line styles.
26+
* Improve rasterized PNG output quality.
27+
* Warn when using older versions of ghostscript that produce lower-quality PNG output.
28+
* Suppress the "No handlers could be found for logger toyplot" warning.
29+
* Rewrote the logic for detecting Ghostscript.
30+
1031
Toyplot 0.13.0 - July 22, 2016
1132
------------------------------
1233

toyplot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
from toyplot.canvas import Canvas
1414

15-
__version__ = "0.14.0-dev"
15+
__version__ = "0.14.0"
1616

1717
log = logging.getLogger(__name__)
1818
log.setLevel(logging.WARNING)

0 commit comments

Comments
 (0)