Skip to content

Commit

Permalink
more migration entries; drop MsgType
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Mar 13, 2017
1 parent 80a97c5 commit 23852a5
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 35 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
CHANGES
=======

2.0.0 (2016-03-XX)
------------------
2.0.0a0 (2016-03-14)
--------------------

- Properly handle payload errors #1710

Expand Down
32 changes: 0 additions & 32 deletions DEPRECATIONS.rst

This file was deleted.

25 changes: 25 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -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)
------------------

Expand Down
2 changes: 1 addition & 1 deletion aiohttp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
payload_streamer.__all__ + # noqa
streams.__all__ + # noqa
('hdrs', 'HttpVersion', 'HttpVersion10', 'HttpVersion11',
'WSMsgType', 'MsgType', 'WSCloseCode',
'WSMsgType', 'WSCloseCode',
'WebSocketError', 'WSMessage', 'CookieJar',
))
2 changes: 2 additions & 0 deletions docs/migration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ Client

16. TCPConnector.conn_timeout - moved to ClientSession

17. aiohttp.MsgType dropped, use aiohttp.WSMsgType


Web
---
Expand Down

0 comments on commit 23852a5

Please sign in to comment.