From e0c11106aa49af2852c9718f81063770f7a334d8 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Mon, 5 Mar 2018 01:08:51 +0200 Subject: [PATCH] Bump to 3.0.6 --- CHANGES.rst | 6 ++++++ aiohttp/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 36373920daf..3b2e565219a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,12 @@ Changelog .. towncrier release notes start +3.0.6 (2018-03-05) +================== + +- Add ``_reuse_address`` and ``_reuse_port`` to + ``web_runner.TCPSite.__slots__``. (#2792) + 3.0.5 (2018-02-27) ================== diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index b9d888b39f9..c7ef9ce1fbd 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.0.5' +__version__ = '3.0.6' # This relies on each of the submodules having an __all__ variable.