Hello community,

here is the log from the commit of package python-simplejson for 
openSUSE:Factory checked in at 2012-10-03 10:06:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-simplejson (Old)
 and      /work/SRC/openSUSE:Factory/.python-simplejson.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-simplejson", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-simplejson/python-simplejson.changes      
2012-09-06 09:03:17.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-simplejson.new/python-simplejson.changes 
2012-10-03 10:06:34.000000000 +0200
@@ -1,0 +2,6 @@
+Sat Sep 29 19:35:09 UTC 2012 - [email protected]
+
+- Update to 2.6.2:
+  * JSONEncoderForHTML was not exported in the simplejson module
+
+-------------------------------------------------------------------

Old:
----
  simplejson-2.6.1.tar.gz

New:
----
  simplejson-2.6.2.tar.gz

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

Other differences:
------------------
++++++ python-simplejson.spec ++++++
--- /var/tmp/diff_new_pack.rB9786/_old  2012-10-03 10:06:35.000000000 +0200
+++ /var/tmp/diff_new_pack.rB9786/_new  2012-10-03 10:06:35.000000000 +0200
@@ -18,7 +18,7 @@
 
 %define modname simplejson
 Name:           python-%{modname}
-Version:        2.6.1
+Version:        2.6.2
 Release:        0
 Url:            http://github.com/simplejson/simplejson
 Summary:        Simple, fast, extensible JSON encoder/decoder for Python

++++++ simplejson-2.6.1.tar.gz -> simplejson-2.6.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-2.6.1/CHANGES.txt 
new/simplejson-2.6.2/CHANGES.txt
--- old/simplejson-2.6.1/CHANGES.txt    2012-07-28 06:59:14.000000000 +0200
+++ new/simplejson-2.6.2/CHANGES.txt    2012-09-21 21:25:20.000000000 +0200
@@ -1,3 +1,8 @@
+Version 2.6.2 released 2012-09-21
+
+* JSONEncoderForHTML was not exported in the simplejson module
+  https://github.com/simplejson/simplejson/issues/41
+
 Version 2.6.1 released 2012-07-27
 
 * raw_decode() now skips whitespace before the object
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-2.6.1/PKG-INFO 
new/simplejson-2.6.2/PKG-INFO
--- old/simplejson-2.6.1/PKG-INFO       2012-07-28 07:01:49.000000000 +0200
+++ new/simplejson-2.6.2/PKG-INFO       2012-09-21 21:26:47.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: simplejson
-Version: 2.6.1
+Version: 2.6.2
 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-2.6.1/conf.py new/simplejson-2.6.2/conf.py
--- old/simplejson-2.6.1/conf.py        2012-07-28 06:55:50.000000000 +0200
+++ new/simplejson-2.6.2/conf.py        2012-09-21 21:25:57.000000000 +0200
@@ -44,7 +44,7 @@
 # The short X.Y version.
 version = '2.6'
 # The full version, including alpha/beta/rc tags.
-release = '2.6.1'
+release = '2.6.2'
 
 # 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-2.6.1/setup.py 
new/simplejson-2.6.2/setup.py
--- old/simplejson-2.6.1/setup.py       2012-07-28 06:55:46.000000000 +0200
+++ new/simplejson-2.6.2/setup.py       2012-09-21 21:25:54.000000000 +0200
@@ -7,7 +7,7 @@
     DistutilsPlatformError
 
 IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '2.6.1'
+VERSION = '2.6.2'
 DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
 LONG_DESCRIPTION = open('README.rst', 'r').read()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-2.6.1/simplejson/__init__.py 
new/simplejson-2.6.2/simplejson/__init__.py
--- old/simplejson-2.6.1/simplejson/__init__.py 2012-07-28 06:55:40.000000000 
+0200
+++ new/simplejson-2.6.2/simplejson/__init__.py 2012-09-21 21:25:52.000000000 
+0200
@@ -97,7 +97,7 @@
     $ echo '{ 1.2:3.4}' | python -m simplejson.tool
     Expecting property name: line 1 column 2 (char 2)
 """
-__version__ = '2.6.1'
+__version__ = '2.6.2'
 __all__ = [
     'dump', 'dumps', 'load', 'loads',
     'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',
@@ -109,7 +109,7 @@
 from decimal import Decimal
 
 from decoder import JSONDecoder, JSONDecodeError
-from encoder import JSONEncoder
+from encoder import JSONEncoder, JSONEncoderForHTML
 def _import_OrderedDict():
     import collections
     try:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/simplejson-2.6.1/simplejson/tests/test_encode_for_html.py 
new/simplejson-2.6.2/simplejson/tests/test_encode_for_html.py
--- old/simplejson-2.6.1/simplejson/tests/test_encode_for_html.py       
2012-05-11 00:04:51.000000000 +0200
+++ new/simplejson-2.6.2/simplejson/tests/test_encode_for_html.py       
2012-09-21 21:23:45.000000000 +0200
@@ -1,14 +1,12 @@
 import unittest
 
-import simplejson.decoder
-import simplejson.encoder
-
+import simplejson as json
 
 class TestEncodeForHTML(unittest.TestCase):
 
     def setUp(self):
-        self.decoder = simplejson.decoder.JSONDecoder()
-        self.encoder = simplejson.encoder.JSONEncoderForHTML()
+        self.decoder = json.JSONDecoder()
+        self.encoder = json.JSONEncoderForHTML()
 
     def test_basic_encode(self):
         self.assertEqual(r'"\u0026"', self.encoder.encode('&'))

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to