pcre2/NEWS

48 lines
1.6 KiB
Plaintext
Raw Normal View History

2014-09-28 13:31:21 +02:00
News about PCRE2 releases
-------------------------
2015-07-02 15:18:14 +02:00
Version 10.20 30-June-2015
--------------------------
1. Callouts with string arguments and the pcre2_callout_enumerate() function
have been implemented.
2. The PCRE2_NEVER_BACKSLASH_C option, which locks out the use of \C, is added.
3. The PCRE2_ALT_CIRCUMFLEX option lets ^ match after a newline at the end of a
subject in multiline mode.
4. The way named subpatterns are handled has been refactored. The previous
approach had several bugs.
5. The handling of \c in EBCDIC environments has been changed to conform to the
perlebcdic document. This is an incompatible change.
6. Bugs have been mended, many of them discovered by fuzzers.
2015-03-06 16:08:29 +01:00
Version 10.10 06-March-2015
---------------------------
2015-02-20 12:20:40 +01:00
1. Serialization and de-serialization functions have been added to the API,
making it possible to save and restore sets of compiled patterns, though
restoration must be done in the same environment that was used for compilation.
2. The (*NO_JIT) feature has been added; this makes it possible for a pattern
creator to specify that JIT is not to be used.
2015-02-26 18:36:29 +01:00
3. A number of bugs have been fixed. In particular, bugs that caused building
2015-03-06 16:08:29 +01:00
on Windows using CMake to fail have been mended.
2015-02-20 12:20:40 +01:00
Version 10.00 05-January-2015
-----------------------------
2014-09-28 13:31:21 +02:00
2014-11-24 16:31:28 +01:00
Version 10.00 is the first release of PCRE2, a revised API for the PCRE
library. Changes prior to 10.00 are logged in the ChangeLog file for the old
API, up to item 20 for release 8.36. New programs are recommended to use the
new library. Programs that use the original (PCRE1) API will need changing
before linking with the new library.
2014-09-28 13:31:21 +02:00
****