From cb20fd2be57f96bdef243a50d9cfd539ef13c095 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Wed, 21 Sep 2022 14:18:15 +0200 Subject: [PATCH] Bump aiohttp to v3.8.3 --- CHANGES.rst | 18 ++++++++++++++++++ CHANGES/6950.bugfix | 7 ------- aiohttp/__init__.py | 2 +- 3 files changed, 19 insertions(+), 8 deletions(-) delete mode 100644 CHANGES/6950.bugfix diff --git a/CHANGES.rst b/CHANGES.rst index ecdf50dedbd..94c768ebca5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,24 @@ .. towncrier release notes start +3.8.3 (2022-09-21) +================== + +Bugfixes +-------- + +- Increased the upper boundary of the :doc:`multidict:index` dependency + to allow for the version 6 -- by :user:`hugovk`. + + It used to be limited below version 7 in :doc:`aiohttp ` v3.8.1 but + was lowered in v3.8.2 via :pr:`6550` and never brought back, causing + problems with dependency pins when upgrading. :doc:`aiohttp ` v3.8.3 + fixes that by recovering the original boundary of ``< 7``. + `#6950 `_ + + +---- + 3.8.2 (2022-09-20) ================== diff --git a/CHANGES/6950.bugfix b/CHANGES/6950.bugfix deleted file mode 100644 index 02fcdb6312c..00000000000 --- a/CHANGES/6950.bugfix +++ /dev/null @@ -1,7 +0,0 @@ -Increased the upper boundary of the :doc:`multidict:index` dependency -to allow for the version 6 -- by :user:`hugovk`. - -It used to be limited below version 7 in :doc:`aiohttp ` v3.8.1 but -was lowered in v3.8.2 via :pr:`6550` and never brought back, causing -problems with dependency pins when upgrading. :doc:`aiohttp ` v3.8.3 -fixes that by recovering the original boundary of ``< 7``. diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index e439218f88c..b407fecac19 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.8.2.post0.dev0" +__version__ = "3.8.3" from typing import Tuple