Skip to content

Commit

Permalink
Prepare 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Booth committed Sep 12, 2018
1 parent 732182b commit 9d7fbc2
Show file tree
Hide file tree
Showing 2 changed files with 9 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, 3)
_version = (0, 8, 0)
_version_str = '.'.join(str(part) for part in _version)

__all__ = (curio.__all__ +
Expand Down
8 changes: 8 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.8.0 (12 Sep 2018)
---------------------------

* change TaskGroup semantics: the first error of a member task is
raised by the TaskGroup instead of TaskGroupError (which is now
removed). Code wanting to query the status / results of member
tasks should loop on group.next_done().

Version 0.7.3 (17 Aug 2018)
---------------------------

Expand Down

0 comments on commit 9d7fbc2

Please sign in to comment.