From 2f6d97d8ddb745f16d80068e869d74b6349ee163 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Fri, 3 May 2024 15:01:59 +0400 Subject: [PATCH 1/2] Release 0.6.0 --- docs/source/history.rst | 8 ++++++++ src/unasync/_version.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/source/history.rst b/docs/source/history.rst index 6b4518c..30e8d37 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -4,3 +4,11 @@ Release history .. currentmodule:: unasync .. towncrier release notes start + +unasync 0.6.0 (2024-05-03) +-------------------------- + +* Drop support for Python 2.7, 3.5, 3.6 and 3.7 +* Add support for Python 3.9, 3.10, 3.11 and 3.12 +* Replace ``tokenize`` with ``tokenize-rt`` which roundtrips correctly and + handles Python 3.12 f-strings correctly. diff --git a/src/unasync/_version.py b/src/unasync/_version.py index 0a95219..ae10048 100644 --- a/src/unasync/_version.py +++ b/src/unasync/_version.py @@ -1,3 +1,3 @@ # This file is imported from __init__.py and exec'd from setup.py -__version__ = "0.5.0+dev" +__version__ = "0.6.0" From 34703c6dd902906f39ea6d06ea8e3f4ba887cb84 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Fri, 3 May 2024 15:15:49 +0400 Subject: [PATCH 2/2] Bump version to 0.6.0+dev --- src/unasync/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unasync/_version.py b/src/unasync/_version.py index ae10048..dff3253 100644 --- a/src/unasync/_version.py +++ b/src/unasync/_version.py @@ -1,3 +1,3 @@ # This file is imported from __init__.py and exec'd from setup.py -__version__ = "0.6.0" +__version__ = "0.6.0+dev"