Hello community,
here is the log from the commit of package python3-simplejson for
openSUSE:Factory checked in at 2015-06-06 09:54:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-simplejson (Old)
and /work/SRC/openSUSE:Factory/.python3-simplejson.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-simplejson"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-simplejson/python3-simplejson.changes
2015-06-01 09:55:19.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.python3-simplejson.new/python3-simplejson.changes
2015-06-06 09:54:17.000000000 +0200
@@ -1,0 +2,7 @@
+Fri Jun 5 00:40:08 UTC 2015 - [email protected]
+
+- update to version 3.7.3:
+ * Fix typo introduced in 3.7.0 (behavior should be indistinguishable)
+
https://github.com/simplejson/simplejson/commit/e18cc09b688ea1f3305c27616fd3cadd2adc6d31#commitcomment-11443842
+
+-------------------------------------------------------------------
Old:
----
simplejson-3.7.2.tar.gz
New:
----
simplejson-3.7.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-simplejson.spec ++++++
--- /var/tmp/diff_new_pack.MWToN2/_old 2015-06-06 09:54:18.000000000 +0200
+++ /var/tmp/diff_new_pack.MWToN2/_new 2015-06-06 09:54:18.000000000 +0200
@@ -17,7 +17,7 @@
Name: python3-simplejson
-Version: 3.7.2
+Version: 3.7.3
Release: 0
Url: http://github.com/simplejson/simplejson
Summary: Simple, fast, extensible JSON encoder/decoder for Python
++++++ simplejson-3.7.2.tar.gz -> simplejson-3.7.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplejson-3.7.2/CHANGES.txt
new/simplejson-3.7.3/CHANGES.txt
--- old/simplejson-3.7.2/CHANGES.txt 2015-05-22 18:26:24.000000000 +0200
+++ new/simplejson-3.7.3/CHANGES.txt 2015-05-31 21:24:24.000000000 +0200
@@ -1,3 +1,8 @@
+Version 3.7.3 released 2015-05-31
+
+* Fix typo introduced in 3.7.0 (behavior should be indistinguishable)
+
https://github.com/simplejson/simplejson/commit/e18cc09b688ea1f3305c27616fd3cadd2adc6d31#commitcomment-11443842
+
Version 3.7.2 released 2015-05-22
* Do not cache Decimal class in encoder, only reference the decimal module.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplejson-3.7.2/PKG-INFO
new/simplejson-3.7.3/PKG-INFO
--- old/simplejson-3.7.2/PKG-INFO 2015-05-22 18:34:43.000000000 +0200
+++ new/simplejson-3.7.3/PKG-INFO 2015-05-31 21:27:46.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: simplejson
-Version: 3.7.2
+Version: 3.7.3
Summary: Simple, fast, extensible JSON encoder/decoder for Python
Home-page: http://github.com/simplejson/simplejson
Author: Bob Ippolito
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplejson-3.7.2/conf.py new/simplejson-3.7.3/conf.py
--- old/simplejson-3.7.2/conf.py 2015-05-22 18:23:16.000000000 +0200
+++ new/simplejson-3.7.3/conf.py 2015-05-31 21:24:52.000000000 +0200
@@ -44,7 +44,7 @@
# The short X.Y version.
version = '3.7'
# The full version, including alpha/beta/rc tags.
-release = '3.7.2'
+release = '3.7.3'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplejson-3.7.2/setup.py
new/simplejson-3.7.3/setup.py
--- old/simplejson-3.7.2/setup.py 2015-05-22 18:23:31.000000000 +0200
+++ new/simplejson-3.7.3/setup.py 2015-05-31 21:24:46.000000000 +0200
@@ -11,7 +11,7 @@
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '3.7.2'
+VERSION = '3.7.3'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
with open('README.rst', 'r') as f:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplejson-3.7.2/simplejson/__init__.py
new/simplejson-3.7.3/simplejson/__init__.py
--- old/simplejson-3.7.2/simplejson/__init__.py 2015-05-22 18:21:54.000000000
+0200
+++ new/simplejson-3.7.3/simplejson/__init__.py 2015-05-31 21:24:42.000000000
+0200
@@ -98,7 +98,7 @@
Expecting property name: line 1 column 3 (char 2)
"""
from __future__ import absolute_import
-__version__ = '3.7.2'
+__version__ = '3.7.3'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplejson-3.7.2/simplejson/encoder.py
new/simplejson-3.7.3/simplejson/encoder.py
--- old/simplejson-3.7.2/simplejson/encoder.py 2015-05-22 18:21:25.000000000
+0200
+++ new/simplejson-3.7.3/simplejson/encoder.py 2015-05-31 21:22:00.000000000
+0200
@@ -510,7 +510,7 @@
elif key is None:
key = 'null'
elif isinstance(key, integer_types):
- if key not in integer_types:
+ if type(key) not in integer_types:
# See #118, do not trust custom str/repr
key = int(key)
key = str(key)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/simplejson-3.7.2/simplejson.egg-info/PKG-INFO
new/simplejson-3.7.3/simplejson.egg-info/PKG-INFO
--- old/simplejson-3.7.2/simplejson.egg-info/PKG-INFO 2015-05-22
18:34:39.000000000 +0200
+++ new/simplejson-3.7.3/simplejson.egg-info/PKG-INFO 2015-05-31
21:27:43.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: simplejson
-Version: 3.7.2
+Version: 3.7.3
Summary: Simple, fast, extensible JSON encoder/decoder for Python
Home-page: http://github.com/simplejson/simplejson
Author: Bob Ippolito