diff --git a/debian/changelog b/debian/changelog index 13a6a79dbb4ef90d6cca0e2516b4ecf06c25543a..f65a1bb6caec943dd400fb47eb99d6743bf598a5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +sjrpc (9) unstable; urgency=low + + * Fixed the uuid bug + * Fixed a lot of bugs (disconnection, HUP, shutdown) + * Added feature to embed data on asynchronous calls + * Added timeout feature on (remote) call method + + -- Antoine Millet Wed, 02 Feb 2011 11:43:07 +0100 + sjrpc (8) unstable; urgency=low * Added a shutdown_client method on SimpleRpcServer manager to disconnect a diff --git a/sjrpc/__init__.py b/sjrpc/__init__.py index 453ac516d79bd16507a59b3635c7c497c3a7b4b2..c96e8ec2aefc64091f79f1572f7cdbfcfa41ce93 100644 --- a/sjrpc/__init__.py +++ b/sjrpc/__init__.py @@ -21,4 +21,4 @@ import sjrpc.server import sjrpc.client import sjrpc.utils -__version__ = 8 +__version__ = 9