Skip to content

Commit

Permalink
Prepare 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Booth committed Aug 16, 2018
1 parent eb384eb commit 5c87b13
Show file tree
Hide file tree
Showing 2 changed files with 10 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, 7, 1)
_version = (0, 7, 2)
_version_str = '.'.join(str(part) for part in _version)

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

Version 0.7.2 (16 Aug 2018)
---------------------------

* Restore batch functionality in Session class
* Less verbose logging
* Increment and test error count on protocol errors
* fix `#4`_

Version 0.7.1 (09 Aug 2018)
---------------------------

Expand Down Expand Up @@ -65,3 +73,4 @@ Version 0.5.6
cancelled, which does not give an informative error message.

.. _#3: https://github.com/kyuupichan/aiorpcX/issues/3
.. _#4: https://github.com/kyuupichan/aiorpcX/issues/4

0 comments on commit 5c87b13

Please sign in to comment.