[Pcre-svn] [217] code/trunk: Final file tidies for 10.10 rel…

トップ ページ
このメッセージを削除
著者: Subversion repository
日付:  
To: pcre-svn
題目: [Pcre-svn] [217] code/trunk: Final file tidies for 10.10 release.
Revision: 217
          http://www.exim.org/viewvc/pcre2?view=rev&revision=217
Author:   ph10
Date:     2015-03-06 15:08:29 +0000 (Fri, 06 Mar 2015)


Log Message:
-----------
Final file tidies for 10.10 release.

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


Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog    2015-03-06 12:49:18 UTC (rev 216)
+++ code/trunk/ChangeLog    2015-03-06 15:08:29 UTC (rev 217)
@@ -1,8 +1,8 @@
 Change Log for PCRE2
 --------------------


-Version 10.10 26-February-2015
-------------------------------
+Version 10.10 06-March-2015
+---------------------------

1. When a pattern is compiled, it remembers the highest back reference so that
when matching, if the ovector is too small, extra memory can be obtained to
@@ -94,8 +94,8 @@

20. Added RunTest.bat for running the tests under Windows.

-21. "make distclean" was not removing config.h, a file that is created for use
-with CMake.
+21. "make distclean" was not removing config.h, a file that may be created for
+use with CMake.

22. A pattern such as "((?2){0,1999}())?", which has a group containing a
forward reference repeated a large (but limited) number of times within a

Modified: code/trunk/NEWS
===================================================================
--- code/trunk/NEWS    2015-03-06 12:49:18 UTC (rev 216)
+++ code/trunk/NEWS    2015-03-06 15:08:29 UTC (rev 217)
@@ -1,8 +1,8 @@
 News about PCRE2 releases
 -------------------------


-Version 10.10 26-February-2015
-------------------------------
+Version 10.10 06-March-2015
+---------------------------

1. Serialization and de-serialization functions have been added to the API,
making it possible to save and restore sets of compiled patterns, though
@@ -12,7 +12,7 @@
creator to specify that JIT is not to be used.

3. A number of bugs have been fixed. In particular, bugs that caused building
-on Windows using CMake have been mended.
+on Windows using CMake to fail have been mended.


Version 10.00 05-January-2015

Modified: code/trunk/configure.ac
===================================================================
--- code/trunk/configure.ac    2015-03-06 12:49:18 UTC (rev 216)
+++ code/trunk/configure.ac    2015-03-06 15:08:29 UTC (rev 217)
@@ -10,8 +10,8 @@


m4_define(pcre2_major, [10])
m4_define(pcre2_minor, [10])
-m4_define(pcre2_prerelease, [-RC2])
-m4_define(pcre2_date, [2015-02-26])
+m4_define(pcre2_prerelease, [])
+m4_define(pcre2_date, [2015-03-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/src/config.h.generic
===================================================================
--- code/trunk/src/config.h.generic    2015-03-06 12:49:18 UTC (rev 216)
+++ code/trunk/src/config.h.generic    2015-03-06 15:08:29 UTC (rev 217)
@@ -200,7 +200,7 @@
 #define PACKAGE_NAME "PCRE2"


/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "PCRE2 10.10-RC2"
+#define PACKAGE_STRING "PCRE2 10.10"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "pcre2"
@@ -209,7 +209,7 @@
#define PACKAGE_URL ""

/* Define to the version of this package. */
-#define PACKAGE_VERSION "10.10-RC2"
+#define PACKAGE_VERSION "10.10"

 /* 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
@@ -287,7 +287,7 @@
 /* #undef SUPPORT_VALGRIND */


/* Version number of package */
-#define VERSION "10.10-RC2"
+#define VERSION "10.10"

/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */

Modified: code/trunk/src/pcre2.h.generic
===================================================================
--- code/trunk/src/pcre2.h.generic    2015-03-06 12:49:18 UTC (rev 216)
+++ code/trunk/src/pcre2.h.generic    2015-03-06 15:08:29 UTC (rev 217)
@@ -43,8 +43,8 @@


 #define PCRE2_MAJOR          10
 #define PCRE2_MINOR          10
-#define PCRE2_PRERELEASE     -RC2
-#define PCRE2_DATE           2015-02-26
+#define PCRE2_PRERELEASE     
+#define PCRE2_DATE           2015-03-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