diff --git a/aiorpcx/__init__.py b/aiorpcx/__init__.py index 7b6350b..d3c3590 100644 --- a/aiorpcx/__init__.py +++ b/aiorpcx/__init__.py @@ -5,7 +5,7 @@ from .session import * from .util import * -_version = (0, 7, 0) +_version = (0, 7, 1) _version_str = '.'.join(str(part) for part in _version) __all__ = (curio.__all__ + diff --git a/docs/changelog.rst b/docs/changelog.rst index 94d3869..f52faf9 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,20 @@ ChangeLog .. note:: The aiorpcX API changed quite a bit for version 0.6 and is still unstable +Version 0.7.1 (09 Aug 2018) +--------------------------- + +* TaskGroup.cancel_remaining() must wait for the tasks to complete +* Fix some tests whose success / failure depended on time races +* fix `#3`_ + +Version 0.7.0 (08 Aug 2018) +--------------------------- + +* Fix wait=object and cancellation +* Change Session and JSONRPCConnection APIs +* Fix a test that would hang on some systems + Version 0.6.2 (06 Aug 2018) --------------------------- @@ -49,3 +63,5 @@ Version 0.5.6 * Define a ConnectionError exception, and set it on uncomplete requests when a connection is lost. Previously, those requests were cancelled, which does not give an informative error message. + +.. _#3: https://github.com/kyuupichan/aiorpcX/issues/3