Skip to content

Commit add4db4

Browse files
committed
Final file tidies for 10.34
1 parent af45f41 commit add4db4

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

ChangeLog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Change Log for PCRE2
22
--------------------
33

44

5-
Version 10.34-RC1 06-November-2019
6-
----------------------------------
5+
Version 10.34 21-November-2019
6+
------------------------------
77

88
1. The maximum number of capturing subpatterns is 65535 (documented), but no
99
check on this was ever implemented. This omission has been rectified; it fixes

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ News about PCRE2 releases
22
-------------------------
33

44

5-
Version 10.34 06-November-2019
5+
Version 10.34 21-November-2019
66
------------------------------
77

88
Another release with a few enhancements as well as bugfixes and tidies. The

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ dnl be defined as -RC2, for example. For real releases, it should be empty.
1010

1111
m4_define(pcre2_major, [10])
1212
m4_define(pcre2_minor, [34])
13-
m4_define(pcre2_prerelease, [-RC2])
14-
m4_define(pcre2_date, [2019-11-06])
13+
m4_define(pcre2_prerelease, [])
14+
m4_define(pcre2_date, [2019-11-21])
1515

1616
# NOTE: The CMakeLists.txt file searches for the above variables in the first
1717
# 50 lines of this file. Please update that if the variables above are moved.

src/config.h.generic

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ sure both macros are undefined; an emulation function will then be used. */
218218
#define PACKAGE_NAME "PCRE2"
219219

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

223223
/* Define to the one symbol short name of this package. */
224224
#define PACKAGE_TARNAME "pcre2"
@@ -227,7 +227,7 @@ sure both macros are undefined; an emulation function will then be used. */
227227
#define PACKAGE_URL ""
228228

229229
/* Define to the version of this package. */
230-
#define PACKAGE_VERSION "10.34-RC2"
230+
#define PACKAGE_VERSION "10.34"
231231

232232
/* The value of PARENS_NEST_LIMIT specifies the maximum depth of nested
233233
parentheses (of any kind) in a pattern. This limits the amount of system
@@ -352,7 +352,7 @@ sure both macros are undefined; an emulation function will then be used. */
352352
#endif
353353

354354
/* Version number of package */
355-
#define VERSION "10.34-RC2"
355+
#define VERSION "10.34"
356356

357357
/* Define to 1 if on MINIX. */
358358
/* #undef _MINIX */

src/pcre2.h.generic

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ POSSIBILITY OF SUCH DAMAGE.
4343

4444
#define PCRE2_MAJOR 10
4545
#define PCRE2_MINOR 34
46-
#define PCRE2_PRERELEASE -RC2
47-
#define PCRE2_DATE 2019-11-06
46+
#define PCRE2_PRERELEASE
47+
#define PCRE2_DATE 2019-11-21
4848

4949
/* When an application links to a PCRE DLL in Windows, the symbols that are
5050
imported have to be identified as such. When building PCRE2, the appropriate

src/pcre2_compile.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8743,9 +8743,9 @@ do {
87438743
if (inassert == 0) return 0;
87448744

87458745
/* If the character is more than one code unit long, we cannot set its
8746-
first code unit when matching caselessly. Later scanning may pick up
8746+
first code unit when matching caselessly. Later scanning may pick up
87478747
multiple code units. */
8748-
8748+
87498749
#ifdef SUPPORT_UNICODE
87508750
#if PCRE2_CODE_UNIT_WIDTH == 8
87518751
if (scode[1] >= 0x80) return 0;

src/pcre2test.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ commented out the original, but kept it around just in case. */
170170
#endif
171171

172172
/* VC and older compilers don't support %td or %zu, and even some that claim to
173-
be C99 don't support it (hence DISABLE_PERCENT_ZT). There are some non-C99
174-
environments where %lu gives a warning with 32-bit pointers. As there doesn't
173+
be C99 don't support it (hence DISABLE_PERCENT_ZT). There are some non-C99
174+
environments where %lu gives a warning with 32-bit pointers. As there doesn't
175175
seem to be an easy way round this, just live with it (the cases are rare). */
176176

177177
#if defined(_MSC_VER) || !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L || defined(DISABLE_PERCENT_ZT)

0 commit comments

Comments
 (0)