From bf04a1bf53df93d2ab381e151225db3cf466082f Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 21 Nov 2024 08:28:34 -0600 Subject: [PATCH] Release 3.11.7 (#10019) --- CHANGES.rst | 30 ++++++++++++++++++++++++++++++ CHANGES/10003.bugfix.rst | 1 - CHANGES/10014.misc.rst | 1 - aiohttp/__init__.py | 2 +- 4 files changed, 31 insertions(+), 3 deletions(-) delete mode 100644 CHANGES/10003.bugfix.rst delete mode 100644 CHANGES/10014.misc.rst diff --git a/CHANGES.rst b/CHANGES.rst index 4a8fc39b1f5..e204f07b370 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,36 @@ .. towncrier release notes start +3.11.7 (2024-11-21) +=================== + +Bug fixes +--------- + +- Fixed the HTTP client not considering the connector's ``force_close`` value when setting the ``Connection`` header -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`10003`. + + + + +Miscellaneous internal changes +------------------------------ + +- Improved performance of serializing HTTP headers -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`10014`. + + + + +---- + + 3.11.6 (2024-11-19) =================== diff --git a/CHANGES/10003.bugfix.rst b/CHANGES/10003.bugfix.rst deleted file mode 100644 index 69aa554591d..00000000000 --- a/CHANGES/10003.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed the HTTP client not considering the connector's ``force_close`` value when setting the ``Connection`` header -- by :user:`bdraco`. diff --git a/CHANGES/10014.misc.rst b/CHANGES/10014.misc.rst deleted file mode 100644 index 8a27657cdb9..00000000000 --- a/CHANGES/10014.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of serializing HTTP headers -- by :user:`bdraco`. diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index c03badec692..8c5b96c99de 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.11.7.dev0" +__version__ = "3.11.7" from typing import TYPE_CHECKING, Tuple