Commit 582fc83b authored by Antoine Millet's avatar Antoine Millet
Browse files

Released v4

parent 0197b19b
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
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 <antoine.millet@smartjog.com>  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
+1 −1
Original line number Diff line number Diff line
@@ -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',