From cc2a522f5d9505e29abe3c35366e6afc94199358 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Thu, 3 Aug 2017 17:00:48 +0300 Subject: [PATCH] Bump to 2.2.5 --- CHANGES.rst | 6 ++++++ aiohttp/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 938be38beed..f1f0b28bc73 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changes ======= +2.2.5 (2017-08-03) +------------------ + +- Don't raise deprecation warning on + `loop.run_until_complete(client.close())` (#2065) + 2.2.4 (2017-08-02) ------------------ diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index 65b453c8440..7e875c9659f 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.2.4' +__version__ = '2.2.5' # This relies on each of the submodules having an __all__ variable.