diff --git a/CHANGES.rst b/CHANGES.rst index 46e9ffb2050..7be4fc6483e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,17 @@ Changelog .. towncrier release notes start +2.3.4 (2017-11-29) +================== + +- Make `request.app` point to proper application instance when using nested + applications (with middlewares). (#2550) +- Change base class of ClientConnectorSSLError to ClientSSLError from + ClientConnectorError. (#2563) +- Return client connection back to free pool on error in `connector.connect()`. + (#2567) + + 2.3.3 (2017-11-17) ================== diff --git a/CHANGES/2550.bugfix b/CHANGES/2550.bugfix deleted file mode 100644 index de39a572ee6..00000000000 --- a/CHANGES/2550.bugfix +++ /dev/null @@ -1 +0,0 @@ -Make `request.app` point to proper application instance when using nested applications (with middlewares). diff --git a/CHANGES/2563.bugfix b/CHANGES/2563.bugfix deleted file mode 100644 index 6c5b1e000fc..00000000000 --- a/CHANGES/2563.bugfix +++ /dev/null @@ -1 +0,0 @@ -Change base class of ClientConnectorSSLError to ClientSSLError from ClientConnectorError. diff --git a/CHANGES/2567.bugfix b/CHANGES/2567.bugfix deleted file mode 100644 index b6c235d87e9..00000000000 --- a/CHANGES/2567.bugfix +++ /dev/null @@ -1 +0,0 @@ -Return client connection back to free pool on error in `connector.connect()`. diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index aa75fa522f8..8ee1e44fb9d 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.3.3' +__version__ = '2.3.4' # This relies on each of the submodules having an __all__ variable.