From fadb699d5298813d616db5f5099d30bd43ed6ee4 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Wed, 14 Mar 2018 14:11:32 +0200 Subject: [PATCH] Bump to 4.0.9 --- CHANGES.rst | 7 +++++++ CHANGES/2827.bugfix | 1 - aiohttp/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) delete mode 100644 CHANGES/2827.bugfix diff --git a/CHANGES.rst b/CHANGES.rst index b8ae9ca165..00db4b9571 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,13 @@ Changelog .. towncrier release notes start +3.0.9 (2018-03-14) +================== + +- Close a connection if an unexpected exception occurs while sending a request + (#2827) + + 3.0.8 (2018-03-12) ================== diff --git a/CHANGES/2827.bugfix b/CHANGES/2827.bugfix deleted file mode 100644 index 977c6a79d8..0000000000 --- a/CHANGES/2827.bugfix +++ /dev/null @@ -1 +0,0 @@ -Close a connection if an unexpected exception occurs while sending a request diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index 1ebbe5ca20..d88a8df5a3 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.0.8' +__version__ = '3.0.9' # This relies on each of the submodules having an __all__ variable.