From 4e096a4a91196baad0017be0088df66eb245bbea Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Sat, 27 Jan 2018 20:22:05 +0100 Subject: [PATCH] 0.7.0 --- CHANGES.rst | 8 ++++++++ tomodachi/__version__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 331c1141c..fda2285a6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,14 @@ Changes ======= +0.7.0 (2018-01-27) +------------------ + +- Added `@websocket` as a decorator type for handling websockets. A function + call should return two callables which will be used for receiving messages + through the socket and as a way to notify about the closure of the socket. + + 0.6.5 (2018-01-16) ------------------ diff --git a/tomodachi/__version__.py b/tomodachi/__version__.py index 9140594e3..0cb763e15 100644 --- a/tomodachi/__version__.py +++ b/tomodachi/__version__.py @@ -1,4 +1,4 @@ -__version__ = '0.6.5' +__version__ = '0.7.0' if __name__ == "__main__": print(__version__)