From 94cb52befb9bc7161dc6c9812919bfb790384b1a Mon Sep 17 00:00:00 2001
From: "Philip.Hazel"
Perl treats a hyphen as a literal if it appears before or after a POSIX class -(see below) or a character type escape such as as \d, but gives a warning in -its warning mode, as this is most likely a user error. As PCRE2 has no facility -for warning, an error is given in these cases. +(see below) or before or after a character type escape such as as \d or \H. +However, unless the hyphen is the last character in the class, Perl outputs a +warning in its warning mode, as this is most likely a user error. As PCRE2 has +no facility for warning, an error is given in these cases.
It is not possible to have the literal character "]" as the end character of a @@ -3472,7 +3473,7 @@ Cambridge, England.
-Last updated: 05 July 2017
+Last updated: 29 July 2017
Copyright © 1997-2017 University of Cambridge.
diff --git a/doc/pcre2.txt b/doc/pcre2.txt
index bb0314f..8b7337c 100644
--- a/doc/pcre2.txt
+++ b/doc/pcre2.txt
@@ -6827,9 +6827,11 @@ SQUARE BRACKETS AND CHARACTER CLASSES
ter, or z.
Perl treats a hyphen as a literal if it appears before or after a POSIX
- class (see below) or a character type escape such as as \d, but gives a
- warning in its warning mode, as this is most likely a user error. As
- PCRE2 has no facility for warning, an error is given in these cases.
+ class (see below) or before or after a character type escape such as as
+ \d or \H. However, unless the hyphen is the last character in the
+ class, Perl outputs a warning in its warning mode, as this is most
+ likely a user error. As PCRE2 has no facility for warning, an error is
+ given in these cases.
It is not possible to have the literal character "]" as the end charac-
ter of a range. A pattern such as [W-]46] is interpreted as a class of
@@ -8793,7 +8795,7 @@ AUTHOR
REVISION
- Last updated: 05 July 2017
+ Last updated: 29 July 2017
Copyright (c) 1997-2017 University of Cambridge.
------------------------------------------------------------------------------
diff --git a/maint/ManyConfigTests b/maint/ManyConfigTests
index 5860b39..9784971 100755
--- a/maint/ManyConfigTests
+++ b/maint/ManyConfigTests
@@ -286,7 +286,9 @@ if [ $ISGCC -ne 0 -a $usemain -ne 0 ]; then
runtest
if [ $useasan -ne 0 ]; then
echo "---------- Maximally configured test with -fsanitize=address ----------"
- CFLAGS="$OFLAGS $SAVECFLAGS -fsanitize=address"
+# Following a kernel change, sanitize address doesn't work unless the extra
+# PIE options are also set.
+ CFLAGS="$OFLAGS $SAVECFLAGS -no-pie -fno-PIE -fsanitize=address"
echo "CFLAGS=$CFLAGS"
opts="--disable-shared $enable_jit --enable-pcre2-16 --enable-pcre2-32"
runtest
diff --git a/src/config.h.generic b/src/config.h.generic
index f794576..09f16be 100644
--- a/src/config.h.generic
+++ b/src/config.h.generic
@@ -210,7 +210,7 @@ sure both macros are undefined; an emulation function will then be used. */
#define PACKAGE_NAME "PCRE2"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "PCRE2 10.30-RC1"
+#define PACKAGE_STRING "PCRE2 10.30"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "pcre2"
@@ -219,7 +219,7 @@ sure both macros are undefined; an emulation function will then be used. */
#define PACKAGE_URL ""
/* Define to the version of this package. */
-#define PACKAGE_VERSION "10.30-RC1"
+#define PACKAGE_VERSION "10.30"
/* 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
@@ -339,7 +339,7 @@ sure both macros are undefined; an emulation function will then be used. */
#endif
/* Version number of package */
-#define VERSION "10.30-RC1"
+#define VERSION "10.30"
/* Define to 1 if on MINIX. */
/* #undef _MINIX */
diff --git a/src/pcre2.h b/src/pcre2.h
index 287b12a..5a45339 100644
--- a/src/pcre2.h
+++ b/src/pcre2.h
@@ -43,8 +43,8 @@ POSSIBILITY OF SUCH DAMAGE.
#define PCRE2_MAJOR 10
#define PCRE2_MINOR 30
-#define PCRE2_PRERELEASE -RC1
-#define PCRE2_DATE 2017-07-18
+#define PCRE2_PRERELEASE
+#define PCRE2_DATE 2017-08-14
/* 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
diff --git a/src/pcre2.h.generic b/src/pcre2.h.generic
index 287b12a..5a45339 100644
--- a/src/pcre2.h.generic
+++ b/src/pcre2.h.generic
@@ -43,8 +43,8 @@ POSSIBILITY OF SUCH DAMAGE.
#define PCRE2_MAJOR 10
#define PCRE2_MINOR 30
-#define PCRE2_PRERELEASE -RC1
-#define PCRE2_DATE 2017-07-18
+#define PCRE2_PRERELEASE
+#define PCRE2_DATE 2017-08-14
/* 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