From 31e9b112a9bbbe64ec436bc9a946f2ae00badbbb Mon Sep 17 00:00:00 2001 From: Dong-hee Na Date: Wed, 14 Jun 2023 22:58:16 +0900 Subject: [PATCH] Prepare release 1.0.9 --- doc/changelog.rst | 5 +++++ pyperformance/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 17dbb6ed..34eae5ed 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,11 @@ Changelog ========= +Version 1.0.9 (2023-06-14) +------------- +* Vendor lib2to3 for Python 3.13+ +* Add TaskGroups variants to async_tree benchmarks + Version 1.0.8 (2023-06-02) ------------- diff --git a/pyperformance/__init__.py b/pyperformance/__init__.py index 296e6539..92479b50 100644 --- a/pyperformance/__init__.py +++ b/pyperformance/__init__.py @@ -2,7 +2,7 @@ import sys -VERSION = (1, 0, 8) +VERSION = (1, 0, 9) __version__ = '.'.join(map(str, VERSION))