From bf4edce5d6c967fa1d6a581b3aaab1bd2f5121cd Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Mon, 29 Jan 2024 19:13:14 +0000 Subject: [PATCH] Release v3.9.3 (#8102) --- CHANGES.rst | 31 +++++++++++++++++++++++++++++++ CHANGES/3957.misc | 1 - CHANGES/8097.bugfix.rst | 1 - CHANGES/8098.bugfix.rst | 2 -- aiohttp/__init__.py | 2 +- 5 files changed, 32 insertions(+), 5 deletions(-) delete mode 100644 CHANGES/3957.misc delete mode 120000 CHANGES/8097.bugfix.rst delete mode 100644 CHANGES/8098.bugfix.rst diff --git a/CHANGES.rst b/CHANGES.rst index c26cc90e76..64dff9b516 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,37 @@ .. towncrier release notes start +3.9.3 (2024-01-29) +================== + +Bug fixes +--------- + +- Fixed backwards compatibility breakage (in 3.9.2) of ``ssl`` parameter when set outside + of ``ClientSession`` (e.g. directly in ``TCPConnector``) -- by :user:`Dreamsorcerer`. + + + *Related issues and pull requests on GitHub:* + :issue:`8097`, :issue:`8098`. + + + + +Miscellaneous internal changes +------------------------------ + +- Improved test suite handling of paths and temp files to consistently use pathlib and pytest fixtures. + + + *Related issues and pull requests on GitHub:* + :issue:`3957`. + + + + +---- + + 3.9.2 (2024-01-28) ================== diff --git a/CHANGES/3957.misc b/CHANGES/3957.misc deleted file mode 100644 index b4f9f58edb..0000000000 --- a/CHANGES/3957.misc +++ /dev/null @@ -1 +0,0 @@ -Improve test suite handling of paths and temp files to consistently use pathlib and pytest fixtures. diff --git a/CHANGES/8097.bugfix.rst b/CHANGES/8097.bugfix.rst deleted file mode 120000 index c799b052a6..0000000000 --- a/CHANGES/8097.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -8098.bugfix.rst \ No newline at end of file diff --git a/CHANGES/8098.bugfix.rst b/CHANGES/8098.bugfix.rst deleted file mode 100644 index 0242fb978e..0000000000 --- a/CHANGES/8098.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fixed backwards compatibility breakage of ``ssl`` parameter when set outside of -``ClientSession`` (e.g. directly in ``TCPConnector``) -- by :user:`Dreamsorcerer`. diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index 8153b4616b..12209def6c 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.9.2.dev0" +__version__ = "3.9.3" from typing import TYPE_CHECKING, Tuple