diff --git a/debian/changelog b/debian/changelog index 8437efcc3234e29d460e4038cab474c69967cad0..13a6a79dbb4ef90d6cca0e2516b4ecf06c25543a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +sjrpc (8) unstable; urgency=low + + * Added a shutdown_client method on SimpleRpcServer manager to disconnect a + client before to calling the disconnection callback. + * Added getpeername method on RpcConnection class. + * Removed exception name in RpcError.__str__ result. + + -- Antoine Millet Mon, 10 Jan 2011 18:33:36 +0100 + sjrpc (7) unstable; urgency=low * Added retrieval of a proxified method by getitem. diff --git a/sjrpc/__init__.py b/sjrpc/__init__.py index d13ad259b6400bcff0e8ae5c18dc8cc1672f91d5..453ac516d79bd16507a59b3635c7c497c3a7b4b2 100644 --- a/sjrpc/__init__.py +++ b/sjrpc/__init__.py @@ -21,4 +21,4 @@ import sjrpc.server import sjrpc.client import sjrpc.utils -__version__ = 7 +__version__ = 8