Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-unidiff for openSUSE:Factory 
checked in at 2022-02-09 20:39:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-unidiff (Old)
 and      /work/SRC/openSUSE:Factory/.python-unidiff.new.1898 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-unidiff"

Wed Feb  9 20:39:45 2022 rev:9 rq:952931 version:0.7.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-unidiff/python-unidiff.changes    
2022-01-29 21:00:12.671428709 +0100
+++ /work/SRC/openSUSE:Factory/.python-unidiff.new.1898/python-unidiff.changes  
2022-02-09 20:41:06.802650567 +0100
@@ -1,0 +2,6 @@
+Wed Feb  9 09:34:10 UTC 2022 - Martin Li??ka <[email protected]>
+
+- Update to version 0.7.3
+  * Fixed RE_BINARY_DIFF regex to make it a raw string.
+
+-------------------------------------------------------------------

Old:
----
  v0.7.2.tar.gz

New:
----
  v0.7.3.tar.gz

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

Other differences:
------------------
++++++ python-unidiff.spec ++++++
--- /var/tmp/diff_new_pack.Q1P9n1/_old  2022-02-09 20:41:07.326651820 +0100
+++ /var/tmp/diff_new_pack.Q1P9n1/_new  2022-02-09 20:41:07.334651840 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-unidiff
-Version:        0.7.2
+Version:        0.7.3
 Release:        0
 Summary:        Unified diff parsing/metadata extraction library
 License:        MIT

++++++ v0.7.2.tar.gz -> v0.7.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-unidiff-0.7.2/AUTHORS 
new/python-unidiff-0.7.3/AUTHORS
--- old/python-unidiff-0.7.2/AUTHORS    2022-01-28 17:00:28.000000000 +0100
+++ new/python-unidiff-0.7.3/AUTHORS    2022-02-06 20:02:48.000000000 +0100
@@ -29,3 +29,4 @@
   * Ben Carlsson (`@glacials`_)
   * (`@huichen-cs`)
   * Mikhail f. Shiryaev (`@Felixoid`)
+  * Ronuk Raval (`@rraval`)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-unidiff-0.7.2/HISTORY 
new/python-unidiff-0.7.3/HISTORY
--- old/python-unidiff-0.7.2/HISTORY    2022-01-28 17:00:28.000000000 +0100
+++ new/python-unidiff-0.7.3/HISTORY    2022-02-06 20:02:48.000000000 +0100
@@ -1,6 +1,11 @@
 History
 -------
 
+0.7.3 - 2022-02-06
+------------------
+
+* Fixed RE_BINARY_DIFF regex to make it a raw string.
+
 0.7.2 - 2022-01-28
 ------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-unidiff-0.7.2/unidiff/__version__.py 
new/python-unidiff-0.7.3/unidiff/__version__.py
--- old/python-unidiff-0.7.2/unidiff/__version__.py     2022-01-28 
17:00:28.000000000 +0100
+++ new/python-unidiff-0.7.3/unidiff/__version__.py     2022-02-06 
20:02:48.000000000 +0100
@@ -21,4 +21,4 @@
 # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
 # OR OTHER DEALINGS IN THE SOFTWARE.
 
-__version__ = '0.7.2'
+__version__ = '0.7.3'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-unidiff-0.7.2/unidiff/constants.py 
new/python-unidiff-0.7.3/unidiff/constants.py
--- old/python-unidiff-0.7.2/unidiff/constants.py       2022-01-28 
17:00:28.000000000 +0100
+++ new/python-unidiff-0.7.3/unidiff/constants.py       2022-02-06 
20:02:48.000000000 +0100
@@ -64,8 +64,8 @@
 
 RE_BINARY_DIFF = re.compile(
     r'^Binary files? '
-    '(?P<source_filename>[^\t]+?)(?:\t(?P<source_timestamp>[\s0-9:\+-]+))?'
-    '(?: and 
(?P<target_filename>[^\t]+?)(?:\t(?P<target_timestamp>[\s0-9:\+-]+))?)? 
(differ|has changed)')
+    r'(?P<source_filename>[^\t]+?)(?:\t(?P<source_timestamp>[\s0-9:\+-]+))?'
+    r'(?: and 
(?P<target_filename>[^\t]+?)(?:\t(?P<target_timestamp>[\s0-9:\+-]+))?)? 
(differ|has changed)')
 
 DEFAULT_ENCODING = 'UTF-8'
 

Reply via email to