Hello community,

here is the log from the commit of package python-webencodings for 
openSUSE:Factory checked in at 2017-11-04 10:24:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-webencodings (Old)
 and      /work/SRC/openSUSE:Factory/.python-webencodings.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-webencodings"

Sat Nov  4 10:24:06 2017 rev:2 rq:538109 version:0.5.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-webencodings/python-webencodings.changes  
2017-04-19 18:03:47.509540863 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-webencodings.new/python-webencodings.changes 
    2017-11-04 10:24:48.988650990 +0100
@@ -1,0 +2,9 @@
+Tue Oct 31 02:39:01 UTC 2017 - [email protected]
+
+- update to version 0.5.1:
+  * Finally add myself as maintainer
+  * Document and test all supported Python versions (#10)
+  * Release as a universal wheel (#7)
+  * Use 'utf-8' as encoding instead of 'utf8' (#9)
+
+-------------------------------------------------------------------

Old:
----
  webencodings-0.5.tar.gz

New:
----
  webencodings-0.5.1.tar.gz

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

Other differences:
------------------
++++++ python-webencodings.spec ++++++
--- /var/tmp/diff_new_pack.XnAtmZ/_old  2017-11-04 10:24:49.792621733 +0100
+++ /var/tmp/diff_new_pack.XnAtmZ/_new  2017-11-04 10:24:49.796621588 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-webencodings
-Version:        0.5
+Version:        0.5.1
 Release:        0
 Summary:        Character encoding aliases for legacy web content
 License:        BSD-3-Clause

++++++ webencodings-0.5.tar.gz -> webencodings-0.5.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/webencodings-0.5/PKG-INFO 
new/webencodings-0.5.1/PKG-INFO
--- old/webencodings-0.5/PKG-INFO       2016-06-01 00:27:02.000000000 +0200
+++ new/webencodings-0.5.1/PKG-INFO     2017-04-05 22:16:56.000000000 +0200
@@ -1,10 +1,10 @@
 Metadata-Version: 1.1
 Name: webencodings
-Version: 0.5
+Version: 0.5.1
 Summary: Character encoding aliases for legacy web content
 Home-page: https://github.com/SimonSapin/python-webencodings
-Author: Simon Sapin
-Author-email: [email protected]
+Author: Geoffrey Sneddon
+Author-email: [email protected]
 License: BSD
 Description: python-webencodings
         ===================
@@ -36,6 +36,15 @@
 Classifier: Development Status :: 4 - Beta
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: BSD License
+Classifier: Programming Language :: Python
 Classifier: Programming Language :: Python :: 2
+Classifier: Programming Language :: Python :: 2.6
+Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: Implementation :: CPython
+Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Internet :: WWW/HTTP
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/webencodings-0.5/setup.cfg 
new/webencodings-0.5.1/setup.cfg
--- old/webencodings-0.5/setup.cfg      2016-06-01 00:27:02.000000000 +0200
+++ new/webencodings-0.5.1/setup.cfg    2017-04-05 22:16:56.000000000 +0200
@@ -1,3 +1,6 @@
+[bdist_wheel]
+universal = 1
+
 [build_sphinx]
 source-dir = docs
 build-dir = docs/_build
@@ -8,5 +11,4 @@
 [egg_info]
 tag_build = 
 tag_date = 0
-tag_svn_revision = 0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/webencodings-0.5/setup.py 
new/webencodings-0.5.1/setup.py
--- old/webencodings-0.5/setup.py       2016-06-01 00:20:43.000000000 +0200
+++ new/webencodings-0.5.1/setup.py     2017-04-05 22:06:52.000000000 +0200
@@ -22,14 +22,25 @@
     license='BSD',
     author='Simon Sapin',
     author_email='[email protected]',
+    maintainer='Geoffrey Sneddon',
+    maintainer_email='[email protected]',
     description='Character encoding aliases for legacy web content',
     long_description=LONG_DESCRIPTION,
     classifiers=[
         'Development Status :: 4 - Beta',
         'Intended Audience :: Developers',
         'License :: OSI Approved :: BSD License',
+        'Programming Language :: Python',
         'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 2.6',
+        'Programming Language :: Python :: 2.7',
         'Programming Language :: Python :: 3',
+        'Programming Language :: Python :: 3.3',
+        'Programming Language :: Python :: 3.4',
+        'Programming Language :: Python :: 3.5',
+        'Programming Language :: Python :: 3.6',
+        'Programming Language :: Python :: Implementation :: CPython',
+        'Programming Language :: Python :: Implementation :: PyPy',
         'Topic :: Internet :: WWW/HTTP',
     ],
     packages=find_packages(),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/webencodings-0.5/webencodings/__init__.py 
new/webencodings-0.5.1/webencodings/__init__.py
--- old/webencodings-0.5/webencodings/__init__.py       2016-06-01 
00:26:39.000000000 +0200
+++ new/webencodings-0.5.1/webencodings/__init__.py     2017-04-05 
22:16:48.000000000 +0200
@@ -1,4 +1,4 @@
-# coding: utf8
+# coding: utf-8
 """
 
     webencodings
@@ -19,7 +19,7 @@
 from .labels import LABELS
 
 
-VERSION = '0.5'
+VERSION = '0.5.1'
 
 
 # Some names in Encoding are not valid Python aliases. Remap these.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/webencodings-0.5/webencodings/tests.py 
new/webencodings-0.5.1/webencodings/tests.py
--- old/webencodings-0.5/webencodings/tests.py  2016-06-01 00:20:43.000000000 
+0200
+++ new/webencodings-0.5.1/webencodings/tests.py        2017-04-05 
22:00:25.000000000 +0200
@@ -1,4 +1,4 @@
-# coding: utf8
+# coding: utf-8
 """
 
     webencodings.tests
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/webencodings-0.5/webencodings/x_user_defined.py 
new/webencodings-0.5.1/webencodings/x_user_defined.py
--- old/webencodings-0.5/webencodings/x_user_defined.py 2016-06-01 
00:07:23.000000000 +0200
+++ new/webencodings-0.5.1/webencodings/x_user_defined.py       2017-04-05 
22:00:25.000000000 +0200
@@ -1,4 +1,4 @@
-# coding: utf8
+# coding: utf-8
 """
 
     webencodings.x_user_defined
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/webencodings-0.5/webencodings.egg-info/PKG-INFO 
new/webencodings-0.5.1/webencodings.egg-info/PKG-INFO
--- old/webencodings-0.5/webencodings.egg-info/PKG-INFO 2016-06-01 
00:27:02.000000000 +0200
+++ new/webencodings-0.5.1/webencodings.egg-info/PKG-INFO       2017-04-05 
22:16:56.000000000 +0200
@@ -1,10 +1,10 @@
 Metadata-Version: 1.1
 Name: webencodings
-Version: 0.5
+Version: 0.5.1
 Summary: Character encoding aliases for legacy web content
 Home-page: https://github.com/SimonSapin/python-webencodings
-Author: Simon Sapin
-Author-email: [email protected]
+Author: Geoffrey Sneddon
+Author-email: [email protected]
 License: BSD
 Description: python-webencodings
         ===================
@@ -36,6 +36,15 @@
 Classifier: Development Status :: 4 - Beta
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: BSD License
+Classifier: Programming Language :: Python
 Classifier: Programming Language :: Python :: 2
+Classifier: Programming Language :: Python :: 2.6
+Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: Implementation :: CPython
+Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Internet :: WWW/HTTP


Reply via email to