[Pcre-svn] [537] code/trunk: File tidies for 10.22-RC1

Top Page
Delete this message
Author: Subversion repository
Date:  
To: pcre-svn
Subject: [Pcre-svn] [537] code/trunk: File tidies for 10.22-RC1
Revision: 537
          http://www.exim.org/viewvc/pcre2?view=rev&revision=537
Author:   ph10
Date:     2016-06-29 17:43:32 +0100 (Wed, 29 Jun 2016)
Log Message:
-----------
File tidies for 10.22-RC1


Modified Paths:
--------------
    code/trunk/ChangeLog
    code/trunk/NEWS
    code/trunk/configure.ac
    code/trunk/src/pcre2.h


Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog    2016-06-29 16:43:02 UTC (rev 536)
+++ code/trunk/ChangeLog    2016-06-29 16:43:32 UTC (rev 537)
@@ -2,8 +2,8 @@
 --------------------



-Version 10.22 29-January-2016
------------------------------
+Version 10.22 29-June-2016
+--------------------------

1. Applied Jason Hood's patches to RunTest.bat and testdata/wintestoutput3
to fix problems with running the tests under Windows.

Modified: code/trunk/NEWS
===================================================================
--- code/trunk/NEWS    2016-06-29 16:43:02 UTC (rev 536)
+++ code/trunk/NEWS    2016-06-29 16:43:32 UTC (rev 537)
@@ -1,6 +1,28 @@
 News about PCRE2 releases
 -------------------------


+Version 10.22 29-June-2016
+--------------------------
+
+1. ChangeLog has the details of a number of bug fixes.
+
+2. The POSIX wrapper function regcomp() did not used to support back references
+and subroutine calls if called with the REG_NOSUB option. It now does.
+
+3. A new function, pcre2_code_copy(), is added, to make a copy of a compiled
+pattern.
+
+4. Support for string callouts is added to pcre2grep.
+
+5. Added the PCRE2_NO_JIT option to pcre2_match().
+
+6. The pcre2_get_error_message() function now returns with a negative error
+code if the error number it is given is unknown.
+
+7. Several updates have been made to pcre2test and test scripts (see
+ChangeLog).
+
+
Version 10.21 12-January-2016
-----------------------------


Modified: code/trunk/configure.ac
===================================================================
--- code/trunk/configure.ac    2016-06-29 16:43:02 UTC (rev 536)
+++ code/trunk/configure.ac    2016-06-29 16:43:32 UTC (rev 537)
@@ -11,16 +11,16 @@
 m4_define(pcre2_major, [10])
 m4_define(pcre2_minor, [22])
 m4_define(pcre2_prerelease, [-RC1])
-m4_define(pcre2_date, [2016-01-29])
+m4_define(pcre2_date, [2016-06-29])


# 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.

 # Libtool shared library interface versions (current:revision:age)
-m4_define(libpcre2_8_version,     [3:0:3])
-m4_define(libpcre2_16_version,    [3:0:3])
-m4_define(libpcre2_32_version,    [3:0:3])
-m4_define(libpcre2_posix_version, [0:1:0])
+m4_define(libpcre2_8_version,     [4:0:4])
+m4_define(libpcre2_16_version,    [4:0:4])
+m4_define(libpcre2_32_version,    [4:0:4])
+m4_define(libpcre2_posix_version, [0:2:0])


AC_PREREQ(2.57)
AC_INIT(PCRE2, pcre2_major.pcre2_minor[]pcre2_prerelease, , pcre2)

Modified: code/trunk/src/pcre2.h
===================================================================
--- code/trunk/src/pcre2.h    2016-06-29 16:43:02 UTC (rev 536)
+++ code/trunk/src/pcre2.h    2016-06-29 16:43:32 UTC (rev 537)
@@ -44,7 +44,7 @@
 #define PCRE2_MAJOR          10
 #define PCRE2_MINOR          22
 #define PCRE2_PRERELEASE     -RC1
-#define PCRE2_DATE           2016-01-29
+#define PCRE2_DATE           2016-06-29


/* 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