diff --git a/debian/changelog b/debian/changelog index 005fc15f2bc82ef0f985adf4584d2410cb23fcff..271cca31b68206b95c19dcf7ee3d3d6352658219 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +sjrpc (4-1) unstable; urgency=low + + * Added a new constructor "from_sock" to SimpleRpcClient class. + * Added a new constructor "from_addr" to SimpleRpcClient class. + * /!\ API MODIFICATION /!\ The SimpleRpcClient constructor now takes + an RpcConnection object instead of directly a socket object. + * New method start on ConnectionManager allow to run the main loop in a new thread. + * Threaded caller now execute the thread as a daemon thread. + * Added a new constructor "from_addr" to RpcConnection class. + + -- Antoine Millet Mon, 20 Dec 2010 14:04:06 +0100 + sjrpc (3-1) unstable; urgency=low * Fixed a bug that disallow to send a large amound of diff --git a/setup.py b/setup.py index d6df4a8fac3cf8481cf4c50fd46dd8541cd8c335..d50f75df1dc35114af63475448898a33759e68ae 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ ldesc = open(os.path.join(os.path.dirname(__file__), 'README')).read() setup( name='sjrpc', - version='3', + version='4', description='Smartjog RPC', long_description=ldesc, author='Antoine Millet',