SHA256
1
0
forked from pool/grep

- update to 3.11:

* With -P, patterns like [\d] now work again. Fixing this
    has caused grep to revert to the behavior of grep 3.8, in that
    patterns like \w and  go back to using ASCII rather
    than Unicode interpretations.
    However, future versions of GNU grep and/or PCRE2 are
    likely to fix this and change the behavior of \w and 
    back to Unicode again, without breaking [\d] as 3.10 did.

OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=135
This commit is contained in:
2023-05-18 12:01:28 +00:00
committed by Git OBS Bridge
parent ce62c6a0b0
commit f53c211d21
6 changed files with 32 additions and 20 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Thu May 18 12:00:38 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.11:
* With -P, patterns like [\d] now work again. Fixing this
has caused grep to revert to the behavior of grep 3.8, in that
patterns like \w and  go back to using ASCII rather
than Unicode interpretations.
However, future versions of GNU grep and/or PCRE2 are
likely to fix this and change the behavior of \w and 
back to Unicode again, without breaking [\d] as 3.10 did.
-------------------------------------------------------------------
Thu Mar 30 07:41:18 UTC 2023 - Dirk Müller <dmueller@suse.com>