From aca81460e2860296b1f8139b4effe8a868e7eff6 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Wed, 9 Aug 2023 18:31:07 +0100 Subject: [PATCH] Release 4.0.3 --- CHANGES.rst | 7 +++++++ CHANGES/285.removal | 1 - CHANGES/333.feature | 1 - CHANGES/362.feature | 1 - async_timeout/__init__.py | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) delete mode 100644 CHANGES/285.removal delete mode 100644 CHANGES/333.feature delete mode 100644 CHANGES/362.feature 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")