Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-simplejson for 
openSUSE:Factory checked in at 2023-01-05 15:00:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-simplejson (Old)
 and      /work/SRC/openSUSE:Factory/.python-simplejson.new.1563 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-simplejson"

Thu Jan  5 15:00:25 2023 rev:48 rq:1055979 version:3.18.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-simplejson/python-simplejson.changes      
2022-12-07 17:34:18.384322759 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-simplejson.new.1563/python-simplejson.changes
    2023-01-05 15:00:39.056956415 +0100
@@ -1,0 +2,7 @@
+Wed Jan  4 18:45:00 UTC 2023 - Dirk Müller <dmuel...@suse.com>
+
+- update to 3.18.1:
+  * Remove unnecessary `i` variable from encoder module namespace
+  * Declare support for Python 3.11 and add wheels
+
+-------------------------------------------------------------------

Old:
----
  simplejson-3.18.0.tar.gz

New:
----
  simplejson-3.18.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-simplejson.spec ++++++
--- /var/tmp/diff_new_pack.DqbCzR/_old  2023-01-05 15:00:39.580959177 +0100
+++ /var/tmp/diff_new_pack.DqbCzR/_new  2023-01-05 15:00:39.588959219 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-simplejson
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-simplejson
-Version:        3.18.0
+Version:        3.18.1
 Release:        0
 Summary:        Extensible JSON encoder/decoder for Python
 License:        AFL-2.1 OR MIT

++++++ simplejson-3.18.0.tar.gz -> simplejson-3.18.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.18.0/CHANGES.txt 
new/simplejson-3.18.1/CHANGES.txt
--- old/simplejson-3.18.0/CHANGES.txt   2022-11-15 00:28:19.000000000 +0100
+++ new/simplejson-3.18.1/CHANGES.txt   2023-01-03 18:00:31.000000000 +0100
@@ -1,3 +1,10 @@
+Version 3.18.1 released 2023-01-03
+
+* Remove unnecessary `i` variable from encoder module namespace
+  https://github.com/simplejson/simplejson/pull/303
+* Declare support for Python 3.11 and add wheels
+  https://github.com/simplejson/simplejson/pull/305
+
 Version 3.18.0 released 2022-11-14
 
 * Allow serialization of classes that implement for_json or _asdict by
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.18.0/PKG-INFO 
new/simplejson-3.18.1/PKG-INFO
--- old/simplejson-3.18.0/PKG-INFO      2022-11-15 00:28:20.761875000 +0100
+++ new/simplejson-3.18.1/PKG-INFO      2023-01-03 18:00:36.020295100 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: simplejson
-Version: 3.18.0
+Version: 3.18.1
 Summary: Simple, fast, extensible JSON encoder/decoder for Python
 Home-page: https://github.com/simplejson/simplejson
 Author: Bob Ippolito
@@ -25,6 +25,7 @@
 Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: 3.9
 Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.18.0/conf.py 
new/simplejson-3.18.1/conf.py
--- old/simplejson-3.18.0/conf.py       2022-11-15 00:28:19.000000000 +0100
+++ new/simplejson-3.18.1/conf.py       2023-01-03 18:00:31.000000000 +0100
@@ -36,7 +36,7 @@
 
 # General substitutions.
 project = 'simplejson'
-copyright = '2021, Bob Ippolito'
+copyright = '2022, Bob Ippolito'
 
 # The default replacements for |version| and |release|, also used in various
 # other places throughout the built documents.
@@ -44,7 +44,7 @@
 # The short X.Y version.
 version = '3.18'
 # The full version, including alpha/beta/rc tags.
-release = '3.18.0'
+release = '3.18.1'
 
 # 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.18.0/setup.py 
new/simplejson-3.18.1/setup.py
--- old/simplejson-3.18.0/setup.py      2022-11-15 00:28:19.000000000 +0100
+++ new/simplejson-3.18.1/setup.py      2023-01-03 18:00:31.000000000 +0100
@@ -12,7 +12,7 @@
     DistutilsPlatformError
 
 IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '3.18.0'
+VERSION = '3.18.1'
 DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
 
 with open('README.rst', 'r') as f:
@@ -39,6 +39,7 @@
     'Programming Language :: Python :: 3.8',
     'Programming Language :: Python :: 3.9',
     'Programming Language :: Python :: 3.10',
+    'Programming Language :: Python :: 3.11',
     'Programming Language :: Python :: Implementation :: CPython',
     'Programming Language :: Python :: Implementation :: PyPy',
     'Topic :: Software Development :: Libraries :: Python Modules',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.18.0/simplejson/__init__.py 
new/simplejson-3.18.1/simplejson/__init__.py
--- old/simplejson-3.18.0/simplejson/__init__.py        2022-11-15 
00:28:19.000000000 +0100
+++ new/simplejson-3.18.1/simplejson/__init__.py        2023-01-03 
18:00:31.000000000 +0100
@@ -118,7 +118,7 @@
 
 """
 from __future__ import absolute_import
-__version__ = '3.18.0'
+__version__ = '3.18.1'
 __all__ = [
     'dump', 'dumps', 'load', 'loads',
     'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.18.0/simplejson/encoder.py 
new/simplejson-3.18.1/simplejson/encoder.py
--- old/simplejson-3.18.0/simplejson/encoder.py 2022-11-15 00:28:19.000000000 
+0100
+++ new/simplejson-3.18.1/simplejson/encoder.py 2023-01-03 18:00:31.000000000 
+0100
@@ -32,6 +32,7 @@
 for i in range(0x20):
     #ESCAPE_DCT.setdefault(chr(i), '\\u{0:04x}'.format(i))
     ESCAPE_DCT.setdefault(chr(i), '\\u%04x' % (i,))
+del i
 
 FLOAT_REPR = repr
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.18.0/simplejson.egg-info/PKG-INFO 
new/simplejson-3.18.1/simplejson.egg-info/PKG-INFO
--- old/simplejson-3.18.0/simplejson.egg-info/PKG-INFO  2022-11-15 
00:28:20.000000000 +0100
+++ new/simplejson-3.18.1/simplejson.egg-info/PKG-INFO  2023-01-03 
18:00:35.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: simplejson
-Version: 3.18.0
+Version: 3.18.1
 Summary: Simple, fast, extensible JSON encoder/decoder for Python
 Home-page: https://github.com/simplejson/simplejson
 Author: Bob Ippolito
@@ -25,6 +25,7 @@
 Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: 3.9
 Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Software Development :: Libraries :: Python Modules

Reply via email to