Skip to content

Commit a489744

Browse files
Release 4.0.3 (#364)
1 parent 5e3a4f0 commit a489744

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGES.rst

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ CHANGES
44

55
.. towncrier release notes start
66
7+
4.0.3 (2023-08-10)
8+
==================
9+
10+
* Fixed compatibility with asyncio.timeout() on Python 3.11+.
11+
* Added support for Python 3.11.
12+
* Dropped support for Python 3.6.
13+
714
4.0.2 (2021-12-20)
815
==================
916

CHANGES/285.removal

-1
This file was deleted.

CHANGES/333.feature

-1
This file was deleted.

CHANGES/362.feature

-1
This file was deleted.

async_timeout/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def _uncancel_task(task: "asyncio.Task[object]") -> None:
2323
pass
2424

2525

26-
__version__ = "4.0.2"
26+
__version__ = "4.0.3"
2727

2828

2929
__all__ = ("timeout", "timeout_at", "Timeout")

0 commit comments

Comments
 (0)