diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 6e44f4fa..af26faca 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,19 @@ +3.8.0 (UNRELEASED) +------------------ + +* Adds support for Python 3.12. + +* Drops support for (end-of-life) Python 3.7. + +* Fixes task cancellation propagation to subtasks when using synchronous Django + middleware. + +* Allows nesting ``sync_to_async`` via ``asyncio.wait_for``. + +* Corrects WSGI adapter handling of root path. + +* Handles case where `"client"` is ``None`` in WsgiToAsgi adapter. + 3.7.2 (2023-05-27) ------------------ diff --git a/asgiref/__init__.py b/asgiref/__init__.py index 3bdbbae2..32a78190 100644 --- a/asgiref/__init__.py +++ b/asgiref/__init__.py @@ -1 +1 @@ -__version__ = "3.7.2" +__version__ = "3.8.0"