Hello community, here is the log from the commit of package python-parse for openSUSE:Factory checked in at 2019-09-13 14:57:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-parse (Old) and /work/SRC/openSUSE:Factory/.python-parse.new.7948 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-parse" Fri Sep 13 14:57:48 2019 rev:6 rq:730060 version:1.12.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-parse/python-parse.changes 2019-04-28 20:11:51.786477778 +0200 +++ /work/SRC/openSUSE:Factory/.python-parse.new.7948/python-parse.changes 2019-09-13 14:57:55.313276228 +0200 @@ -1,0 +2,6 @@ +Wed Sep 11 08:31:39 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Update to 1.12.1: + * no upstream changelog + +------------------------------------------------------------------- Old: ---- parse-1.12.0.tar.gz New: ---- parse-1.12.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-parse.spec ++++++ --- /var/tmp/diff_new_pack.JOKj4i/_old 2019-09-13 14:57:55.785276248 +0200 +++ /var/tmp/diff_new_pack.JOKj4i/_new 2019-09-13 14:57:55.785276248 +0200 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-parse -Version: 1.12.0 +Version: 1.12.1 Release: 0 Summary: Python module for parsing strings using a "format" syntax License: MIT ++++++ parse-1.12.0.tar.gz -> parse-1.12.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parse-1.12.0/PKG-INFO new/parse-1.12.1/PKG-INFO --- old/parse-1.12.0/PKG-INFO 2019-04-07 03:13:15.000000000 +0200 +++ new/parse-1.12.1/PKG-INFO 2019-08-18 09:34:16.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: parse -Version: 1.12.0 +Version: 1.12.1 Summary: parse() is the opposite of format() Home-page: https://github.com/r1chardj0n3s/parse Author: Richard Jones @@ -353,6 +353,7 @@ **Version history (in brief)**: + - 1.12.1 Actually use the `case_sensitive` arg in compile (thanks @jacquev6) - 1.12.0 Do not assume closing brace when an opening one is found (thanks @mattsep) - 1.11.1 Revert having unicode char in docstring, it breaks Bamboo builds(?!) - 1.11.0 Implement `__contains__` for Result instances. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parse-1.12.0/README.rst new/parse-1.12.1/README.rst --- old/parse-1.12.0/README.rst 2019-04-07 03:13:14.000000000 +0200 +++ new/parse-1.12.1/README.rst 2019-08-18 09:34:16.000000000 +0200 @@ -345,6 +345,7 @@ **Version history (in brief)**: +- 1.12.1 Actually use the `case_sensitive` arg in compile (thanks @jacquev6) - 1.12.0 Do not assume closing brace when an opening one is found (thanks @mattsep) - 1.11.1 Revert having unicode char in docstring, it breaks Bamboo builds(?!) - 1.11.0 Implement `__contains__` for Result instances. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parse-1.12.0/parse.egg-info/PKG-INFO new/parse-1.12.1/parse.egg-info/PKG-INFO --- old/parse-1.12.0/parse.egg-info/PKG-INFO 2019-04-07 03:13:14.000000000 +0200 +++ new/parse-1.12.1/parse.egg-info/PKG-INFO 2019-08-18 09:34:16.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: parse -Version: 1.12.0 +Version: 1.12.1 Summary: parse() is the opposite of format() Home-page: https://github.com/r1chardj0n3s/parse Author: Richard Jones @@ -353,6 +353,7 @@ **Version history (in brief)**: + - 1.12.1 Actually use the `case_sensitive` arg in compile (thanks @jacquev6) - 1.12.0 Do not assume closing brace when an opening one is found (thanks @mattsep) - 1.11.1 Revert having unicode char in docstring, it breaks Bamboo builds(?!) - 1.11.0 Implement `__contains__` for Result instances. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parse-1.12.0/parse.py new/parse-1.12.1/parse.py --- old/parse-1.12.0/parse.py 2019-04-07 03:12:25.000000000 +0200 +++ new/parse-1.12.1/parse.py 2019-08-18 09:32:59.000000000 +0200 @@ -345,6 +345,7 @@ **Version history (in brief)**: +- 1.12.1 Actually use the `case_sensitive` arg in compile (thanks @jacquev6) - 1.12.0 Do not assume closing brace when an opening one is found (thanks @mattsep) - 1.11.1 Revert having unicode char in docstring, it breaks Bamboo builds(?!) - 1.11.0 Implement `__contains__` for Result instances. @@ -416,7 +417,7 @@ ''' from __future__ import absolute_import -__version__ = '1.12.0' +__version__ = '1.12.1' # yes, I now have two problems import re @@ -1310,7 +1311,7 @@ Returns a Parser instance. ''' - return Parser(format, extra_types=extra_types) + return Parser(format, extra_types=extra_types, case_sensitive=case_sensitive) # Copyright (c) 2012-2019 Richard Jones <[email protected]> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parse-1.12.0/setup.cfg new/parse-1.12.1/setup.cfg --- old/parse-1.12.0/setup.cfg 2019-04-07 03:13:15.000000000 +0200 +++ new/parse-1.12.1/setup.cfg 2019-08-18 09:34:16.000000000 +0200 @@ -1,5 +1,4 @@ [egg_info] tag_build = tag_date = 0 -tag_svn_revision = 0
