From bd7fb925bd5917312968224a695875d354984d8c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 18 Nov 2024 23:44:33 -0600 Subject: [PATCH] Release 3.11.4 --- CHANGES.rst | 30 ++++++++++++++++++++++++++++++ CHANGES/9895.misc.rst | 1 - CHANGES/9972.bugfix.rst | 1 - CHANGES/9975.bugfix.rst | 1 - CHANGES/9976.bugfix.rst | 1 - aiohttp/__init__.py | 2 +- 6 files changed, 31 insertions(+), 5 deletions(-) delete mode 100644 CHANGES/9895.misc.rst delete mode 100644 CHANGES/9972.bugfix.rst delete mode 120000 CHANGES/9975.bugfix.rst delete mode 120000 CHANGES/9976.bugfix.rst diff --git a/CHANGES.rst b/CHANGES.rst index 896713180eb..121ef0b2db7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,36 @@ .. towncrier release notes start +3.11.4 (2024-11-18) +=================== + +Bug fixes +--------- + +- Fixed ``StaticResource`` not allowing the ``OPTIONS`` method after calling ``set_options_route`` -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`9972`, :issue:`9975`, :issue:`9976`. + + + + +Miscellaneous internal changes +------------------------------ + +- Improved performance of creating web responses when there are no cookies -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`9895`. + + + + +---- + + 3.11.3 (2024-11-18) =================== diff --git a/CHANGES/9895.misc.rst b/CHANGES/9895.misc.rst deleted file mode 100644 index 1049d5d3f4b..00000000000 --- a/CHANGES/9895.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of creating web responses when there are no cookies -- by :user:`bdraco`. diff --git a/CHANGES/9972.bugfix.rst b/CHANGES/9972.bugfix.rst deleted file mode 100644 index c3ea8ef19d7..00000000000 --- a/CHANGES/9972.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed ``StaticResource`` not allowing the ``OPTIONS`` method after calling ``set_options_route`` -- by :user:`bdraco`. diff --git a/CHANGES/9975.bugfix.rst b/CHANGES/9975.bugfix.rst deleted file mode 120000 index 18bf311de3b..00000000000 --- a/CHANGES/9975.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -9972.bugfix.rst \ No newline at end of file diff --git a/CHANGES/9976.bugfix.rst b/CHANGES/9976.bugfix.rst deleted file mode 120000 index 18bf311de3b..00000000000 --- a/CHANGES/9976.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -9972.bugfix.rst \ No newline at end of file diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index 88f1eb0fd91..f9a695716be 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.11.4.dev0" +__version__ = "3.11.4" from typing import TYPE_CHECKING, Tuple