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"