Final file tidies for 10.10 release.
This commit is contained in:
parent
eb8c234e49
commit
632577390a
@ -1,8 +1,8 @@
|
|||||||
Change Log for PCRE2
|
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
|
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
|
when matching, if the ovector is too small, extra memory can be obtained to
|
||||||
@ -94,8 +94,8 @@ only on Windows.
|
|||||||
|
|
||||||
20. Added RunTest.bat for running the tests under Windows.
|
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
|
21. "make distclean" was not removing config.h, a file that may be created for
|
||||||
with CMake.
|
use with CMake.
|
||||||
|
|
||||||
22. A pattern such as "((?2){0,1999}())?", which has a group containing a
|
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
|
forward reference repeated a large (but limited) number of times within a
|
||||||
|
6
NEWS
6
NEWS
@ -1,8 +1,8 @@
|
|||||||
News about PCRE2 releases
|
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,
|
1. Serialization and de-serialization functions have been added to the API,
|
||||||
making it possible to save and restore sets of compiled patterns, though
|
making it possible to save and restore sets of compiled patterns, though
|
||||||
@ -12,7 +12,7 @@ restoration must be done in the same environment that was used for compilation.
|
|||||||
creator to specify that JIT is not to be used.
|
creator to specify that JIT is not to be used.
|
||||||
|
|
||||||
3. A number of bugs have been fixed. In particular, bugs that caused building
|
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
|
Version 10.00 05-January-2015
|
||||||
|
@ -10,8 +10,8 @@ dnl be defined as -RC2, for example. For real releases, it should be empty.
|
|||||||
|
|
||||||
m4_define(pcre2_major, [10])
|
m4_define(pcre2_major, [10])
|
||||||
m4_define(pcre2_minor, [10])
|
m4_define(pcre2_minor, [10])
|
||||||
m4_define(pcre2_prerelease, [-RC2])
|
m4_define(pcre2_prerelease, [])
|
||||||
m4_define(pcre2_date, [2015-02-26])
|
m4_define(pcre2_date, [2015-03-06])
|
||||||
|
|
||||||
# NOTE: The CMakeLists.txt file searches for the above variables in the first
|
# 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.
|
# 50 lines of this file. Please update that if the variables above are moved.
|
||||||
|
@ -200,7 +200,7 @@ sure both macros are undefined; an emulation function will then be used. */
|
|||||||
#define PACKAGE_NAME "PCRE2"
|
#define PACKAGE_NAME "PCRE2"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* 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 to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME "pcre2"
|
#define PACKAGE_TARNAME "pcre2"
|
||||||
@ -209,7 +209,7 @@ sure both macros are undefined; an emulation function will then be used. */
|
|||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* 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
|
/* 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
|
parentheses (of any kind) in a pattern. This limits the amount of system
|
||||||
@ -287,7 +287,7 @@ sure both macros are undefined; an emulation function will then be used. */
|
|||||||
/* #undef SUPPORT_VALGRIND */
|
/* #undef SUPPORT_VALGRIND */
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "10.10-RC2"
|
#define VERSION "10.10"
|
||||||
|
|
||||||
/* Define to empty if `const' does not conform to ANSI C. */
|
/* Define to empty if `const' does not conform to ANSI C. */
|
||||||
/* #undef const */
|
/* #undef const */
|
||||||
|
@ -43,8 +43,8 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#define PCRE2_MAJOR 10
|
#define PCRE2_MAJOR 10
|
||||||
#define PCRE2_MINOR 10
|
#define PCRE2_MINOR 10
|
||||||
#define PCRE2_PRERELEASE -RC2
|
#define PCRE2_PRERELEASE
|
||||||
#define PCRE2_DATE 2015-02-26
|
#define PCRE2_DATE 2015-03-06
|
||||||
|
|
||||||
/* When an application links to a PCRE DLL in Windows, the symbols that are
|
/* 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
|
imported have to be identified as such. When building PCRE2, the appropriate
|
||||||
|
Loading…
Reference in New Issue
Block a user