Revision: 1182
http://www.exim.org/viewvc/pcre2?view=rev&revision=1182
Author: ph10
Date: 2019-11-06 16:51:31 +0000 (Wed, 06 Nov 2019)
Log Message:
-----------
File tidies for 10.34-RC2.
Modified Paths:
--------------
code/trunk/ChangeLog
code/trunk/Makefile.am
code/trunk/NEWS
code/trunk/configure.ac
code/trunk/doc/html/pcre2api.html
code/trunk/doc/html/pcre2pattern.html
code/trunk/src/config.h.generic
code/trunk/src/pcre2.h.generic
Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog 2019-11-06 14:00:21 UTC (rev 1181)
+++ code/trunk/ChangeLog 2019-11-06 16:51:31 UTC (rev 1182)
@@ -2,8 +2,8 @@
--------------------
-Version 10.34-RC1 15-October-2019
----------------------------------
+Version 10.34-RC1 06-November-2019
+----------------------------------
1. The maximum number of capturing subpatterns is 65535 (documented), but no
check on this was ever implemented. This omission has been rectified; it fixes
Modified: code/trunk/Makefile.am
===================================================================
--- code/trunk/Makefile.am 2019-11-06 14:00:21 UTC (rev 1181)
+++ code/trunk/Makefile.am 2019-11-06 16:51:31 UTC (rev 1182)
@@ -362,6 +362,7 @@
src/pcre2_internal.h \
src/pcre2_intmodedep.h \
src/pcre2_jit_compile.c \
+ src/pcre2_jit_neon_inc.h \
src/pcre2_jit_simd_inc.h \
src/pcre2_maketables.c \
src/pcre2_match.c \
Modified: code/trunk/NEWS
===================================================================
--- code/trunk/NEWS 2019-11-06 14:00:21 UTC (rev 1181)
+++ code/trunk/NEWS 2019-11-06 16:51:31 UTC (rev 1182)
@@ -2,8 +2,8 @@
-------------------------
-Version 10.34 15-October-2019
------------------------------
+Version 10.34 06-November-2019
+------------------------------
Another release with a few enhancements as well as bugfixes and tidies. The
main new features are:
Modified: code/trunk/configure.ac
===================================================================
--- code/trunk/configure.ac 2019-11-06 14:00:21 UTC (rev 1181)
+++ code/trunk/configure.ac 2019-11-06 16:51:31 UTC (rev 1182)
@@ -10,8 +10,8 @@
m4_define(pcre2_major, [10])
m4_define(pcre2_minor, [34])
-m4_define(pcre2_prerelease, [-RC1])
-m4_define(pcre2_date, [2019-10-15])
+m4_define(pcre2_prerelease, [-RC2])
+m4_define(pcre2_date, [2019-11-06])
# 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.
Modified: code/trunk/doc/html/pcre2api.html
===================================================================
--- code/trunk/doc/html/pcre2api.html 2019-11-06 14:00:21 UTC (rev 1181)
+++ code/trunk/doc/html/pcre2api.html 2019-11-06 16:51:31 UTC (rev 1182)
@@ -312,7 +312,7 @@
<b>const uint8_t *pcre2_maketables(pcre2_general_context *<i>gcontext</i>);</b>
<br>
<br>
-<b>void pcre2_maketables_free(pcre2_general_context *<i>gcontext</i>, </b>
+<b>void pcre2_maketables_free(pcre2_general_context *<i>gcontext</i>,</b>
<b> const uint8_t *<i>tables</i>);</b>
<br>
<br>
@@ -1989,7 +1989,7 @@
<b>const uint8_t *pcre2_maketables(pcre2_general_context *<i>gcontext</i>);</b>
<br>
<br>
-<b>void pcre2_maketables_free(pcre2_general_context *<i>gcontext</i>, </b>
+<b>void pcre2_maketables_free(pcre2_general_context *<i>gcontext</i>,</b>
<b> const uint8_t *<i>tables</i>);</b>
</P>
<P>
Modified: code/trunk/doc/html/pcre2pattern.html
===================================================================
--- code/trunk/doc/html/pcre2pattern.html 2019-11-06 14:00:21 UTC (rev 1181)
+++ code/trunk/doc/html/pcre2pattern.html 2019-11-06 16:51:31 UTC (rev 1182)
@@ -3771,7 +3771,7 @@
<P>
PCRE2 now supports non-atomic positive assertions, as described in the section
entitled
-<a href="#nonatomicassertions"> "Non-atomic assertions"</a>
+<a href="#nonatomicassertions">"Non-atomic assertions"</a>
above. These assertions must be standalone (not used as conditions). They are
not Perl-compatible. For these assertions, a later backtrack does jump back
into the assertion, and therefore verbs such as (*COMMIT) can be triggered by
Modified: code/trunk/src/config.h.generic
===================================================================
--- code/trunk/src/config.h.generic 2019-11-06 14:00:21 UTC (rev 1181)
+++ code/trunk/src/config.h.generic 2019-11-06 16:51:31 UTC (rev 1182)
@@ -218,7 +218,7 @@
#define PACKAGE_NAME "PCRE2"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "PCRE2 10.34-RC1"
+#define PACKAGE_STRING "PCRE2 10.34-RC2"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "pcre2"
@@ -227,7 +227,7 @@
#define PACKAGE_URL ""
/* Define to the version of this package. */
-#define PACKAGE_VERSION "10.34-RC1"
+#define PACKAGE_VERSION "10.34-RC2"
/* 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
@@ -352,7 +352,7 @@
#endif
/* Version number of package */
-#define VERSION "10.34-RC1"
+#define VERSION "10.34-RC2"
/* Define to 1 if on MINIX. */
/* #undef _MINIX */
Modified: code/trunk/src/pcre2.h.generic
===================================================================
--- code/trunk/src/pcre2.h.generic 2019-11-06 14:00:21 UTC (rev 1181)
+++ code/trunk/src/pcre2.h.generic 2019-11-06 16:51:31 UTC (rev 1182)
@@ -43,8 +43,8 @@
#define PCRE2_MAJOR 10
#define PCRE2_MINOR 34
-#define PCRE2_PRERELEASE -RC1
-#define PCRE2_DATE 2019-10-15
+#define PCRE2_PRERELEASE -RC2
+#define PCRE2_DATE 2019-11-06
/* 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