From cb4c9efa786b7e95da4784ec6dafcd4246c16f9c Mon Sep 17 00:00:00 2001 From: "Timothy M. Shead" Date: Thu, 13 Oct 2022 00:17:51 -0600 Subject: [PATCH] Toyplot version 1.0.3 --- docs/release-notes.rst | 6 ++++++ toyplot/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/release-notes.rst b/docs/release-notes.rst index bc4f1705..cddac374 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -7,6 +7,12 @@ Release Notes ============= +Toyplot 1.0.3 - October 12th, 2022 +---------------------------------- + +* Use matrix multiplication to transform text - thanks to @eaton-lab! +* Some experiments with computational-graph based layout. + Toyplot 1.0.2 - August 24th, 2022 --------------------------------- diff --git a/toyplot/__init__.py b/toyplot/__init__.py index 83e812ec..6e11e13a 100644 --- a/toyplot/__init__.py +++ b/toyplot/__init__.py @@ -14,7 +14,7 @@ from toyplot.canvas import Canvas -__version__ = "1.0.3-dev" +__version__ = "1.0.3" log = logging.getLogger(__name__) log.setLevel(logging.WARNING)