diff --git a/CHANGES.rst b/CHANGES.rst index 3b2e565219a..21df8cd3003 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,16 @@ Changelog .. towncrier release notes start +3.0.7 (2018-03-08) +================== + +- Fix SSL proxy support by client. (#2810) +- Restore a imperative check in ``setup.py`` for python version. The check + works in parallel to environment marker. As effect a error about unsupported + Python versions is raised even on outdated systems with very old + ``setuptools`` version installed. (#2813) + + 3.0.6 (2018-03-05) ================== diff --git a/CHANGES/2810.bugfix b/CHANGES/2810.bugfix deleted file mode 100644 index be2dc148860..00000000000 --- a/CHANGES/2810.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix SSL proxy support by client. \ No newline at end of file diff --git a/CHANGES/2813.bugfix b/CHANGES/2813.bugfix deleted file mode 100644 index fee66c8f607..00000000000 --- a/CHANGES/2813.bugfix +++ /dev/null @@ -1,4 +0,0 @@ -Restore a imperative check in ``setup.py`` for python version. The -check works in parallel to environment marker. As effect a error about -unsupported Python versions is raised even on outdated systems with -very old ``setuptools`` version installed. \ No newline at end of file diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index c7ef9ce1fbd..6e00e1be40e 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.0.6' +__version__ = '3.0.7' # This relies on each of the submodules having an __all__ variable.