14
0
forked from pool/python-regex

Accepting request 620100 from home:TheBlackCat:branches:devel:languages:python

- Update to 2018.06.21
  * Fixed Regex matches with `re` but not with `regex` module
  * Fixed that the reported positions of fuzzy changes were
    sometimes incorrect.
  * Updated Unicode word and grapheme boundaries for Unicode
    11.0.0, which I had overlooked...
  * Updated to Unicode 11.0.0.
  * Fixed an off-by-one bug where a lazy repeat is followed by a
    character (quick check).
  * Fixed that the Unicode normalization quick check properties
    weren't handled correctly.
  * Further changes to match re module's behaviour on zero-width
    matching for Python 3.7.
  * Added 'fuzzy_changes' attribute to match object to indicate
    positions of changes in fuzzy match.

OBS-URL: https://build.opensuse.org/request/show/620100
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-regex?expand=0&rev=9
This commit is contained in:
Todd R
2018-07-02 03:29:07 +00:00
committed by Git OBS Bridge
parent 5832d55e05
commit 4f13089fcd
4 changed files with 24 additions and 5 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Mon Jul 2 03:23:26 UTC 2018 - toddrme2178@gmail.com
- Update to 2018.06.21
* Fixed Regex matches with `re` but not with `regex` module
* Fixed that the reported positions of fuzzy changes were
sometimes incorrect.
* Updated Unicode word and grapheme boundaries for Unicode
11.0.0, which I had overlooked...
* Updated to Unicode 11.0.0.
* Fixed an off-by-one bug where a lazy repeat is followed by a
character (quick check).
* Fixed that the Unicode normalization quick check properties
weren't handled correctly.
* Further changes to match re module's behaviour on zero-width
matching for Python 3.7.
* Added 'fuzzy_changes' attribute to match object to indicate
positions of changes in fuzzy match.
-------------------------------------------------------------------
Sat Sep 2 09:22:13 UTC 2017 - jengelh@inai.de