diff --git a/docs/release-notes.rst b/docs/release-notes.rst index b143a8da..69707a12 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -7,7 +7,14 @@ Release Notes ============= -Toyplot 1.0.0 - January 6th, 2021 +Toyplot 1.0.1 - Febrary 18th, 2022 +---------------------------------- + +* Officially compatible with Python 3.10. +* Corrected usage of deprecated collections API - thanks to @StuntsPT! +* Began exploring Graphcat - https://graphcat.readthedocs.io - as the basis for future Toyplot versions. + +Toyplot 1.0.0 - January 6th, 2022 --------------------------------- * First stable release of the Toyplot API! diff --git a/toyplot/__init__.py b/toyplot/__init__.py index 1e385a4b..74cfc5d7 100644 --- a/toyplot/__init__.py +++ b/toyplot/__init__.py @@ -14,7 +14,7 @@ from toyplot.canvas import Canvas -__version__ = "1.0.0-dev" +__version__ = "1.0.1" log = logging.getLogger(__name__) log.setLevel(logging.WARNING)