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.