Skip to content

Commit

Permalink
Prepare 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Booth committed Sep 25, 2018
1 parent 81139fc commit cce9277
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion aiorpcx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .session import *
from .util import *

_version = (0, 8, 1)
_version = (0, 8, 2)
_version_str = '.'.join(str(part) for part in _version)

__all__ = (curio.__all__ +
Expand Down
11 changes: 11 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ ChangeLog
.. note:: The aiorpcX API changed quite a bit for version 0.6 and
is still unstable

Version 0.8.2 (25 Sep 2018)
---------------------------

* bw_limit defaults to 0 for ClientSession, bandwidth limiting is mainly
intended for servers
* don't close proxy sockets on an exception during the initial SOCKS
handshake; see `#8`_. This works around an asyncio bug still present
in Python 3.7
* make CodeMessageError hashable. This works around a Python bug fixed
somewhere between Python 3.6.4 and 3.6.6

Version 0.8.1 (12 Sep 2018)
---------------------------

Expand Down

0 comments on commit cce9277

Please sign in to comment.