diff --git a/CHANGES.rst b/CHANGES.rst index accbce1e5e6..a17445d6cd4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,8 @@ CHANGES ======= -2.0.0 (2016-03-XX) ------------------- +2.0.0a0 (2016-03-14) +-------------------- - Properly handle payload errors #1710 diff --git a/DEPRECATIONS.rst b/DEPRECATIONS.rst deleted file mode 100644 index fa7f5c9d5de..00000000000 --- a/DEPRECATIONS.rst +++ /dev/null @@ -1,32 +0,0 @@ -Deprecations -^^^^^^^^^^^^ - -python 3.4 ----------- - -Waiting until major linux distributions drop python 3.4 support. Estimation fall of 2017. - - * drop aiohttp/backport_cookies.py module with python3.4 support as well. - import SimpleCookie directly from http.cookies package - -Date: 01/01/2018 - - -WebSocket send_xx method as coroutines --------------------------------------- - -WebSocket writer's methods `send_str`, `send_bytes`, `send_json` are normal methods and return -drain coroutine. Convert this methods to coroutines, so we can enable drain functionality -automatically. - - -Date: 01/01/2018 - - -aiohttp.MsgType ---------------- - -aiohttp.MsgType is deprecated in favor to aiohttp.WSMsgType, deprecated since 1.0 - - -Date: 07/01/2018 ? diff --git a/HISTORY.rst b/HISTORY.rst index 62e33beb1a9..0a9a6a572b4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,28 @@ + +1.3.3 (2017-02-19) +------------------ + +- Fixed memory leak in time service #1656 + + +1.3.2 (2017-02-16) +------------------ + +- Awaiting on WebSocketResponse.send_* does not work #1645 + +- Fix multiple calls to client ws_connect when using a shared header dict #1643 + +- Make CookieJar.filter_cookies() accept plain string parameter. #1636 + + +1.3.1 (2017-02-09) +------------------ + +- Handle CLOSING in WebSocketResponse.__anext__ + +- Fixed AttributeError 'drain' for server websocket handler #1613 + + 1.3.0 (2017-02-08) ------------------ diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index b475f98b887..e68b06602e7 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -24,6 +24,6 @@ payload_streamer.__all__ + # noqa streams.__all__ + # noqa ('hdrs', 'HttpVersion', 'HttpVersion10', 'HttpVersion11', - 'WSMsgType', 'MsgType', 'WSCloseCode', + 'WSMsgType', 'WSCloseCode', 'WebSocketError', 'WSMessage', 'CookieJar', )) diff --git a/docs/migration.rst b/docs/migration.rst index bdefd18af9a..0133e19e62a 100644 --- a/docs/migration.rst +++ b/docs/migration.rst @@ -40,6 +40,8 @@ Client 16. TCPConnector.conn_timeout - moved to ClientSession +17. aiohttp.MsgType dropped, use aiohttp.WSMsgType + Web ---