summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--NEWS5
-rw-r--r--configure.ac2
3 files changed, 9 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 9becfde..7906775 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
ChangeLog for PCRE
------------------
-Version 8.35-RC1 04-March-2014
+Version 8.35-RC1 14-March-2014
------------------------------
1. A new flag is set, when property checks are present in an XCLASS.
@@ -105,7 +105,7 @@ Version 8.35-RC1 04-March-2014
variable called pcre_stack_guard that can be set to point to an external
function to check stack availability. It is called at the start of
processing every parenthesized group.
-
+
22. A typo in the code meant that in ungreedy mode the max/min qualifier
behaved like a min-possessive qualifier, and, for example, /a{1,3}b/U did
not match "ab".
@@ -113,6 +113,9 @@ Version 8.35-RC1 04-March-2014
23. When UTF was disabled, the JIT program reported some incorrect compile
errors. These messages are silenced now.
+24. Experimental support for ARM-64 and MIPS-64 has been added to the JIT
+ compiler.
+
Version 8.34 15-December-2013
-----------------------------
diff --git a/NEWS b/NEWS
index c0bc30a..9d88c82 100644
--- a/NEWS
+++ b/NEWS
@@ -1,14 +1,15 @@
News about PCRE releases
------------------------
-Release 8.35 04-March-2014
+Release 8.35 14-March-2014
--------------------------
There have been performance improvements for classes containing non-ASCII
characters and the "auto-possessification" feature has been extended. Other
minor improvements have been implemented and bugs fixed. There is a new callout
feature to enable applications to do detailed stack checks at compile time, to
-avoid running out of stack for deeply nested parentheses.
+avoid running out of stack for deeply nested parentheses. The JIT compiler has
+been extended with experimental support for ARM-64, MIPS-64, and PPC-LE.
Release 8.34 15-December-2013
diff --git a/configure.ac b/configure.ac
index d8fd6d5..87e7274 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,7 +11,7 @@ dnl be defined as -RC2, for example. For real releases, it should be empty.
m4_define(pcre_major, [8])
m4_define(pcre_minor, [35])
m4_define(pcre_prerelease, [-RC1])
-m4_define(pcre_date, [2014-03-04])
+m4_define(pcre_date, [2014-03-14])
# 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.