Hello community,

here is the log from the commit of package python-flake8-quotes for 
openSUSE:Factory checked in at 2019-08-05 10:42:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-flake8-quotes (Old)
 and      /work/SRC/openSUSE:Factory/.python-flake8-quotes.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-flake8-quotes"

Mon Aug  5 10:42:07 2019 rev:4 rq:720878 version:2.1.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-flake8-quotes/python-flake8-quotes.changes    
    2019-05-22 11:17:43.946461882 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-flake8-quotes.new.4126/python-flake8-quotes.changes
      2019-08-05 10:42:23.731291838 +0200
@@ -1,0 +2,9 @@
+Sat Aug  3 14:27:22 UTC 2019 - Arun Persaud <a...@gmx.de>
+
+- specfile:
+  * be more specifc in %files section
+
+- update to version 2.1.0:
+  * List the defined codes in the README (#85)
+
+-------------------------------------------------------------------

Old:
----
  flake8-quotes-2.0.1.tar.gz

New:
----
  flake8-quotes-2.1.0.tar.gz

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

Other differences:
------------------
++++++ python-flake8-quotes.spec ++++++
--- /var/tmp/diff_new_pack.DJ66tK/_old  2019-08-05 10:42:24.111291794 +0200
+++ /var/tmp/diff_new_pack.DJ66tK/_new  2019-08-05 10:42:24.111291794 +0200
@@ -19,12 +19,12 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %bcond_without  test
 Name:           python-flake8-quotes
-Version:        2.0.1
+Version:        2.1.0
 Release:        0
 Summary:        Flake8 lint for quotes
 License:        MIT
 Group:          Development/Languages/Python
-URL:            http://github.com/zheller/flake8-quotes/
+URL:            https://github.com/zheller/flake8-quotes/
 Source:         
https://files.pythonhosted.org/packages/source/f/flake8-quotes/flake8-quotes-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
@@ -59,6 +59,9 @@
 %files %{python_files}
 %doc README.rst
 %license LICENSE
-%{python_sitelib}/*
+%dir %{python_sitelib}/flake8_quotes
+%{python_sitelib}/flake8_quotes/*
+%dir %{python_sitelib}/flake8_quotes-%{version}-py*.egg-info
+%{python_sitelib}/flake8_quotes-%{version}-py*.egg-info
 
 %changelog

++++++ flake8-quotes-2.0.1.tar.gz -> flake8-quotes-2.1.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-2.0.1/PKG-INFO 
new/flake8-quotes-2.1.0/PKG-INFO
--- old/flake8-quotes-2.0.1/PKG-INFO    2019-04-24 09:49:37.000000000 +0200
+++ new/flake8-quotes-2.1.0/PKG-INFO    2019-08-01 22:37:29.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: flake8-quotes
-Version: 2.0.1
+Version: 2.1.0
 Summary: Flake8 lint for quotes.
 Home-page: http://github.com/zheller/flake8-quotes/
 Author: Zachary Wright Heller
@@ -36,14 +36,25 @@
         Warnings
         --------
         
-        This package adds one flake8 warning ```Q0```.
-        You might want to enable this warning inside `flake8` configuration 
file.
-        Typically that will be `.flake8` inside the root folder of your 
project.
+        This package adds flake8 warnings with the prefix ``Q0``. You might 
want to
+        enable this warning inside your flake8 configuration file. Typically 
that
+        will be ``.flake8`` inside the root folder of your project.
         
         .. code:: ini
         
             select = Q0
         
+        The current set of warnings is:
+        
+        ==== 
=========================================================================
+        Code Description
+        ---- 
-------------------------------------------------------------------------
+        Q000 Remove bad quotes
+        Q001 Remove bad quotes from multiline string
+        Q002 Remove bad quotes from docstring
+        Q003 Change outer quotes to avoid escaping inner quotes
+        ==== 
=========================================================================
+        
         Configuration
         -------------
         
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-2.0.1/README.rst 
new/flake8-quotes-2.1.0/README.rst
--- old/flake8-quotes-2.0.1/README.rst  2019-04-17 01:48:28.000000000 +0200
+++ new/flake8-quotes-2.1.0/README.rst  2019-08-01 22:36:57.000000000 +0200
@@ -28,14 +28,25 @@
 Warnings
 --------
 
-This package adds one flake8 warning ```Q0```.
-You might want to enable this warning inside `flake8` configuration file.
-Typically that will be `.flake8` inside the root folder of your project.
+This package adds flake8 warnings with the prefix ``Q0``. You might want to
+enable this warning inside your flake8 configuration file. Typically that
+will be ``.flake8`` inside the root folder of your project.
 
 .. code:: ini
 
     select = Q0
 
+The current set of warnings is:
+
+==== =========================================================================
+Code Description
+---- -------------------------------------------------------------------------
+Q000 Remove bad quotes
+Q001 Remove bad quotes from multiline string
+Q002 Remove bad quotes from docstring
+Q003 Change outer quotes to avoid escaping inner quotes
+==== =========================================================================
+
 Configuration
 -------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-2.0.1/flake8_quotes/__about__.py 
new/flake8-quotes-2.1.0/flake8_quotes/__about__.py
--- old/flake8-quotes-2.0.1/flake8_quotes/__about__.py  2019-04-24 
09:49:26.000000000 +0200
+++ new/flake8-quotes-2.1.0/flake8_quotes/__about__.py  2019-08-01 
22:37:19.000000000 +0200
@@ -1 +1 @@
-__version__ = '2.0.1'
+__version__ = '2.1.0'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/flake8-quotes-2.0.1/flake8_quotes.egg-info/PKG-INFO 
new/flake8-quotes-2.1.0/flake8_quotes.egg-info/PKG-INFO
--- old/flake8-quotes-2.0.1/flake8_quotes.egg-info/PKG-INFO     2019-04-24 
09:49:37.000000000 +0200
+++ new/flake8-quotes-2.1.0/flake8_quotes.egg-info/PKG-INFO     2019-08-01 
22:37:29.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: flake8-quotes
-Version: 2.0.1
+Version: 2.1.0
 Summary: Flake8 lint for quotes.
 Home-page: http://github.com/zheller/flake8-quotes/
 Author: Zachary Wright Heller
@@ -36,14 +36,25 @@
         Warnings
         --------
         
-        This package adds one flake8 warning ```Q0```.
-        You might want to enable this warning inside `flake8` configuration 
file.
-        Typically that will be `.flake8` inside the root folder of your 
project.
+        This package adds flake8 warnings with the prefix ``Q0``. You might 
want to
+        enable this warning inside your flake8 configuration file. Typically 
that
+        will be ``.flake8`` inside the root folder of your project.
         
         .. code:: ini
         
             select = Q0
         
+        The current set of warnings is:
+        
+        ==== 
=========================================================================
+        Code Description
+        ---- 
-------------------------------------------------------------------------
+        Q000 Remove bad quotes
+        Q001 Remove bad quotes from multiline string
+        Q002 Remove bad quotes from docstring
+        Q003 Change outer quotes to avoid escaping inner quotes
+        ==== 
=========================================================================
+        
         Configuration
         -------------
         


Reply via email to