Revision: 1465
http://vcs.pcre.org/viewvc?view=rev&revision=1465
Author: ph10
Date: 2014-03-14 15:58:19 +0000 (Fri, 14 Mar 2014)
Log Message:
-----------
Final updates for 8.35-RC1.
Modified Paths:
--------------
code/trunk/ChangeLog
code/trunk/NEWS
code/trunk/configure.ac
Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog 2014-03-14 11:45:56 UTC (rev 1464)
+++ code/trunk/ChangeLog 2014-03-14 15:58:19 UTC (rev 1465)
@@ -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 @@
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,7 +113,10 @@
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
-----------------------------
Modified: code/trunk/NEWS
===================================================================
--- code/trunk/NEWS 2014-03-14 11:45:56 UTC (rev 1464)
+++ code/trunk/NEWS 2014-03-14 15:58:19 UTC (rev 1465)
@@ -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
Modified: code/trunk/configure.ac
===================================================================
--- code/trunk/configure.ac 2014-03-14 11:45:56 UTC (rev 1464)
+++ code/trunk/configure.ac 2014-03-14 15:58:19 UTC (rev 1465)
@@ -11,7 +11,7 @@
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.