Hello community, here is the log from the commit of package python-tinyrpc for openSUSE:Factory checked in at 2019-09-11 10:34:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-tinyrpc (Old) and /work/SRC/openSUSE:Factory/.python-tinyrpc.new.7948 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-tinyrpc" Wed Sep 11 10:34:51 2019 rev:6 rq:729733 version:1.0.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-tinyrpc/python-tinyrpc.changes 2019-07-22 17:19:46.785904483 +0200 +++ /work/SRC/openSUSE:Factory/.python-tinyrpc.new.7948/python-tinyrpc.changes 2019-09-11 10:34:54.339304723 +0200 @@ -1,0 +2,6 @@ +Tue Sep 10 09:23:01 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Update to 1.0.3: + * no upstream changelog + +------------------------------------------------------------------- Old: ---- tinyrpc-1.0.2.tar.gz New: ---- tinyrpc-1.0.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-tinyrpc.spec ++++++ --- /var/tmp/diff_new_pack.t3awRg/_old 2019-09-11 10:34:55.591304360 +0200 +++ /var/tmp/diff_new_pack.t3awRg/_new 2019-09-11 10:34:55.591304360 +0200 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-tinyrpc -Version: 1.0.2 +Version: 1.0.3 Release: 0 Summary: A modular transport and protocol neutral RPC library License: MIT ++++++ tinyrpc-1.0.2.tar.gz -> tinyrpc-1.0.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tinyrpc-1.0.2/PKG-INFO new/tinyrpc-1.0.3/PKG-INFO --- old/tinyrpc-1.0.2/PKG-INFO 2019-06-17 15:38:37.000000000 +0200 +++ new/tinyrpc-1.0.3/PKG-INFO 2019-08-18 18:25:13.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: tinyrpc -Version: 1.0.2 +Version: 1.0.3 Summary: A small, modular, transport and protocol neutral RPC library that, among other things, supports JSON-RPC and zmq. Home-page: http://github.com/mbr/tinyrpc Author: Leo Noordergraaf @@ -14,7 +14,7 @@ .. image:: https://travis-ci.org/mbr/tinyrpc.svg?branch=master :target: https://travis-ci.org/mbr/tinyrpc .. image:: https://badge.fury.io/py/tinyrpc.svg - :target: https://badge.fury.io/py/tinyrpc + :target: https://pypi.org/project/tinyrpc/ Note ---- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tinyrpc-1.0.2/README.rst new/tinyrpc-1.0.3/README.rst --- old/tinyrpc-1.0.2/README.rst 2019-06-17 15:33:32.000000000 +0200 +++ new/tinyrpc-1.0.3/README.rst 2019-06-17 15:41:05.000000000 +0200 @@ -6,7 +6,7 @@ .. image:: https://travis-ci.org/mbr/tinyrpc.svg?branch=master :target: https://travis-ci.org/mbr/tinyrpc .. image:: https://badge.fury.io/py/tinyrpc.svg - :target: https://badge.fury.io/py/tinyrpc + :target: https://pypi.org/project/tinyrpc/ Note ---- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tinyrpc-1.0.2/setup.cfg new/tinyrpc-1.0.3/setup.cfg --- old/tinyrpc-1.0.2/setup.cfg 2019-06-17 15:38:37.000000000 +0200 +++ new/tinyrpc-1.0.3/setup.cfg 2019-08-18 18:25:13.000000000 +0200 @@ -1,5 +1,5 @@ [egg_info] +tag_date = 0 tag_build = tag_svn_revision = 0 -tag_date = 0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tinyrpc-1.0.2/setup.py new/tinyrpc-1.0.3/setup.py --- old/tinyrpc-1.0.2/setup.py 2019-06-17 15:28:29.000000000 +0200 +++ new/tinyrpc-1.0.3/setup.py 2019-08-18 18:23:10.000000000 +0200 @@ -9,7 +9,7 @@ setup( name='tinyrpc', - version='1.0.2', + version='1.0.3', description='A small, modular, transport and protocol neutral RPC ' 'library that, among other things, supports JSON-RPC and zmq.', long_description=read('README.rst'), diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tinyrpc-1.0.2/tinyrpc/dispatch/__init__.py new/tinyrpc-1.0.3/tinyrpc/dispatch/__init__.py --- old/tinyrpc-1.0.2/tinyrpc/dispatch/__init__.py 2019-06-17 15:11:03.000000000 +0200 +++ new/tinyrpc-1.0.3/tinyrpc/dispatch/__init__.py 2019-08-18 18:22:10.000000000 +0200 @@ -125,7 +125,7 @@ name = f.__name__ if name in self.method_map: - raise exc.RPCError('Name %s already registered') + raise exc.RPCError('Name \'{}\' already registered'.format(name)) self.method_map[name] = f diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tinyrpc-1.0.2/tinyrpc/protocols/jsonrpc.py new/tinyrpc-1.0.3/tinyrpc/protocols/jsonrpc.py --- old/tinyrpc-1.0.2/tinyrpc/protocols/jsonrpc.py 2019-06-15 16:55:38.000000000 +0200 +++ new/tinyrpc-1.0.3/tinyrpc/protocols/jsonrpc.py 2019-06-27 21:56:25.000000000 +0200 @@ -182,7 +182,7 @@ Contains the fields of a normal (i.e. a non-error) response message. - .. py:attribute:: id + .. py:attribute:: unique_id Correlation ID to match request and response. A JSON RPC response *must* have a defined matching id attribute. @@ -220,7 +220,7 @@ Contains the fields of an error response message. - .. py:attribute:: id + .. py:attribute:: unique_id Correlation ID to match request and response. ``None`` is a valid ID when the error cannot be matched to a particular request. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tinyrpc-1.0.2/tinyrpc.egg-info/PKG-INFO new/tinyrpc-1.0.3/tinyrpc.egg-info/PKG-INFO --- old/tinyrpc-1.0.2/tinyrpc.egg-info/PKG-INFO 2019-06-17 15:38:37.000000000 +0200 +++ new/tinyrpc-1.0.3/tinyrpc.egg-info/PKG-INFO 2019-08-18 18:25:13.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: tinyrpc -Version: 1.0.2 +Version: 1.0.3 Summary: A small, modular, transport and protocol neutral RPC library that, among other things, supports JSON-RPC and zmq. Home-page: http://github.com/mbr/tinyrpc Author: Leo Noordergraaf @@ -14,7 +14,7 @@ .. image:: https://travis-ci.org/mbr/tinyrpc.svg?branch=master :target: https://travis-ci.org/mbr/tinyrpc .. image:: https://badge.fury.io/py/tinyrpc.svg - :target: https://badge.fury.io/py/tinyrpc + :target: https://pypi.org/project/tinyrpc/ Note ----
