Skip to content

Commit

Permalink
Prepare 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Booth committed Oct 25, 2018
1 parent 7d529b7 commit 3edaae6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
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, 2)
_version = (0, 9, 0)
_version_str = '.'.join(str(part) for part in _version)

__all__ = (curio.__all__ +
Expand Down
18 changes: 16 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
ChangeLog
=========

.. note:: The aiorpcX API changed quite a bit for version 0.6 and
is still unstable
.. note:: The aiorpcX API changes regularly and is still unstable

Version 0.9.0 (25 Oct 2018)
---------------------------

* support of binary messaging and framing
* support of plain messaging protocols. Messages do not have an ID
and do not expect a response; any response cannot reference the
message causing it as it has no ID (e.g. the Bitcoin network
protocol).
* removed the client / server session distinction. As a result there
is now only a single session class for JSONRPC-style messaging,
namely RPCSession, and a single session class for plain messaging
protocols, MessageSession. Client connections are initiated by the
session-independent Connector class.

Version 0.8.2 (25 Sep 2018)
---------------------------
Expand Down Expand Up @@ -105,3 +118,4 @@ Version 0.5.6
.. _#3: https://github.com/kyuupichan/aiorpcX/issues/3
.. _#4: https://github.com/kyuupichan/aiorpcX/issues/4
.. _#5: https://github.com/kyuupichan/aiorpcX/issues/5
.. _#8: https://github.com/kyuupichan/aiorpcX/issues/8

0 comments on commit 3edaae6

Please sign in to comment.