SHA256
1
0
forked from pool/pcre2

Accepting request 458575 from home:AndreasStieger:branches:devel:libraries:c_c++

pcre2 10.23

OBS-URL: https://build.opensuse.org/request/show/458575
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/pcre2?expand=0&rev=13
This commit is contained in:
2017-02-16 21:35:09 +00:00
committed by Git OBS Bridge
parent ddd66e91e1
commit 17bd215024
6 changed files with 24 additions and 4 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Feb 16 21:25:42 UTC 2017 - astieger@suse.com
- pcre2 10.23:
* major re-factoring of the pcre2_compile.c file
* Back references are now permitted in lookbehind assertions when
there are no duplicated group numbers (that is, (?| has not
been used), and, if the reference is by name, there is only one
group of that name. The referenced group must, of course be of
fixed length.
* \g{+<number>} (e.g. \g{+2} ) is now supported. It is a "forward
back reference" and can be useful in repetitions
(compare \g{-<number>} ). Perl does not recognize this syntax.
* pcre2grep now automatically expands its buffer up to a maximum
set by --max-buffer-size.
* The -t option (grand total) has been added to pcre2grep.
* A new function called pcre2_code_copy_with_tables() exists to
copy a compiled pattern along with a private copy of the
character tables that is uses.
-------------------------------------------------------------------
Tue Feb 7 16:19:22 UTC 2017 - dimstar@opensuse.org