diff --git a/CHANGES.rst b/CHANGES.rst index 8c49b9c..442bd40 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,13 @@ CHANGES .. towncrier release notes start +4.0.3 (2023-08-10) +================== + +* Fixed compatibility with asyncio.timeout() on Python 3.11+. +* Added support for Python 3.11. +* Dropped support for Python 3.6. + 4.0.2 (2021-12-20) ================== diff --git a/CHANGES/285.removal b/CHANGES/285.removal deleted file mode 100644 index ce0260f..0000000 --- a/CHANGES/285.removal +++ /dev/null @@ -1 +0,0 @@ -Dropped Python 3.6 support diff --git a/CHANGES/333.feature b/CHANGES/333.feature deleted file mode 100644 index 5d1d984..0000000 --- a/CHANGES/333.feature +++ /dev/null @@ -1 +0,0 @@ -Add support for Python 3.11. diff --git a/CHANGES/362.feature b/CHANGES/362.feature deleted file mode 100644 index f547d13..0000000 --- a/CHANGES/362.feature +++ /dev/null @@ -1 +0,0 @@ -Fix compatibility with asyncio.timeout() on python 3.11+. diff --git a/async_timeout/__init__.py b/async_timeout/__init__.py index c39a170..1ffb069 100644 --- a/async_timeout/__init__.py +++ b/async_timeout/__init__.py @@ -23,7 +23,7 @@ def _uncancel_task(task: "asyncio.Task[object]") -> None: pass -__version__ = "4.0.2" +__version__ = "4.0.3" __all__ = ("timeout", "timeout_at", "Timeout")