Final file tidies for 10.31
This commit is contained in:
parent
53a588431c
commit
7eae1c5d17
|
@ -2,8 +2,8 @@ Change Log for PCRE2
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
|
||||||
Version 10.31 13-January-2018
|
Version 10.31 12-February-2018
|
||||||
-----------------------------
|
------------------------------
|
||||||
|
|
||||||
1. Fix typo (missing ]) in VMS code in pcre2test.c.
|
1. Fix typo (missing ]) in VMS code in pcre2test.c.
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ full path file names, which may be up to 2047 characters long.
|
||||||
12. When an assertion contained (*ACCEPT) it caused all open capturing groups
|
12. When an assertion contained (*ACCEPT) it caused all open capturing groups
|
||||||
to be closed (as for a non-assertion ACCEPT), which was wrong and could lead to
|
to be closed (as for a non-assertion ACCEPT), which was wrong and could lead to
|
||||||
misbehaviour for subsequent references to groups that started outside the
|
misbehaviour for subsequent references to groups that started outside the
|
||||||
recursion. ACCEPT in an assertion now closes only those groups that were
|
assertion. ACCEPT in an assertion now closes only those groups that were
|
||||||
started within that assertion. Fixes oss-fuzz issues 3852 and 3891.
|
started within that assertion. Fixes oss-fuzz issues 3852 and 3891.
|
||||||
|
|
||||||
13. Multiline matching in pcre2grep was misbehaving if the pattern matched
|
13. Multiline matching in pcre2grep was misbehaving if the pattern matched
|
||||||
|
|
4
NEWS
4
NEWS
|
@ -1,8 +1,8 @@
|
||||||
News about PCRE2 releases
|
News about PCRE2 releases
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
Version 10.31 13-January-2018
|
Version 10.31 12-February-2018
|
||||||
-----------------------------
|
------------------------------
|
||||||
|
|
||||||
This is mainly a bugfix and tidying release (see ChangeLog for full details).
|
This is mainly a bugfix and tidying release (see ChangeLog for full details).
|
||||||
However, there are some minor enhancements.
|
However, there are some minor enhancements.
|
||||||
|
|
|
@ -10,8 +10,8 @@ dnl be defined as -RC2, for example. For real releases, it should be empty.
|
||||||
|
|
||||||
m4_define(pcre2_major, [10])
|
m4_define(pcre2_major, [10])
|
||||||
m4_define(pcre2_minor, [31])
|
m4_define(pcre2_minor, [31])
|
||||||
m4_define(pcre2_prerelease, [-RC1])
|
m4_define(pcre2_prerelease, [])
|
||||||
m4_define(pcre2_date, [2018-01-11])
|
m4_define(pcre2_date, [2018-02-12])
|
||||||
|
|
||||||
# NOTE: The CMakeLists.txt file searches for the above variables in the first
|
# NOTE: The CMakeLists.txt file searches for the above variables in the first
|
||||||
# 50 lines of this file. Please update that if the variables above are moved.
|
# 50 lines of this file. Please update that if the variables above are moved.
|
||||||
|
|
|
@ -210,7 +210,7 @@ sure both macros are undefined; an emulation function will then be used. */
|
||||||
#define PACKAGE_NAME "PCRE2"
|
#define PACKAGE_NAME "PCRE2"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING "PCRE2 10.31-RC1"
|
#define PACKAGE_STRING "PCRE2 10.31"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME "pcre2"
|
#define PACKAGE_TARNAME "pcre2"
|
||||||
|
@ -219,7 +219,7 @@ sure both macros are undefined; an emulation function will then be used. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION "10.31-RC1"
|
#define PACKAGE_VERSION "10.31"
|
||||||
|
|
||||||
/* The value of PARENS_NEST_LIMIT specifies the maximum depth of nested
|
/* The value of PARENS_NEST_LIMIT specifies the maximum depth of nested
|
||||||
parentheses (of any kind) in a pattern. This limits the amount of system
|
parentheses (of any kind) in a pattern. This limits the amount of system
|
||||||
|
@ -339,7 +339,7 @@ sure both macros are undefined; an emulation function will then be used. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "10.31-RC1"
|
#define VERSION "10.31"
|
||||||
|
|
||||||
/* Define to 1 if on MINIX. */
|
/* Define to 1 if on MINIX. */
|
||||||
/* #undef _MINIX */
|
/* #undef _MINIX */
|
||||||
|
|
|
@ -43,8 +43,8 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
#define PCRE2_MAJOR 10
|
#define PCRE2_MAJOR 10
|
||||||
#define PCRE2_MINOR 31
|
#define PCRE2_MINOR 31
|
||||||
#define PCRE2_PRERELEASE -RC1
|
#define PCRE2_PRERELEASE
|
||||||
#define PCRE2_DATE 2018-01-11
|
#define PCRE2_DATE 2018-02-12
|
||||||
|
|
||||||
/* When an application links to a PCRE DLL in Windows, the symbols that are
|
/* When an application links to a PCRE DLL in Windows, the symbols that are
|
||||||
imported have to be identified as such. When building PCRE2, the appropriate
|
imported have to be identified as such. When building PCRE2, the appropriate
|
||||||
|
|
|
@ -43,8 +43,8 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
#define PCRE2_MAJOR 10
|
#define PCRE2_MAJOR 10
|
||||||
#define PCRE2_MINOR 31
|
#define PCRE2_MINOR 31
|
||||||
#define PCRE2_PRERELEASE -RC1
|
#define PCRE2_PRERELEASE
|
||||||
#define PCRE2_DATE 2018-01-11
|
#define PCRE2_DATE 2018-02-12
|
||||||
|
|
||||||
/* When an application links to a PCRE DLL in Windows, the symbols that are
|
/* When an application links to a PCRE DLL in Windows, the symbols that are
|
||||||
imported have to be identified as such. When building PCRE2, the appropriate
|
imported have to be identified as such. When building PCRE2, the appropriate
|
||||||
|
|
Loading…
Reference in New Issue