diff --git a/CHANGES.rst b/CHANGES.rst index ba8bb03854f..2391c9576c2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,24 @@ .. towncrier release notes start +3.11.2 (2024-11-14) +=================== + +Bug fixes +--------- + +- Fixed improperly closed WebSocket connections generating an unhandled exception -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`9883`. + + + + +---- + + 3.11.1 (2024-11-14) =================== diff --git a/CHANGES/9883.bugfix.rst b/CHANGES/9883.bugfix.rst deleted file mode 100644 index 3ffb8361448..00000000000 --- a/CHANGES/9883.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed improperly closed WebSocket connections generating an unhandled exception -- by :user:`bdraco`. diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index 2d18de694ca..e2c155b02e8 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.11.2.dev0" +__version__ = "3.11.2" from typing import TYPE_CHECKING, Tuple