summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2016-06-14 10:26:11 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2016-06-14 10:26:11 +0000
commit1005d5bd381e441e9afb9ada4cb1006cd666073b (patch)
tree22f00a6221f94cc96f83cce9d7569d67aa7f8dab
parent513dc98cd8edee32fb91150b1d76855673257e9f (diff)
downloadpcre-1005d5bd381e441e9afb9ada4cb1006cd666073b.tar.gz
Final code tidies for 8.39
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1656 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rw-r--r--ChangeLog10
-rw-r--r--NEWS4
-rw-r--r--configure.ac4
3 files changed, 9 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 382be58..a34f845 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,8 +4,8 @@ ChangeLog for PCRE
Note that the PCRE 8.xx series (PCRE1) is now in a bugfix-only state. All
development is happening in the PCRE2 10.xx series.
-Version 8.39 21-May-2016
-------------------------
+Version 8.39 14-June-2016
+-------------------------
1. If PCRE_AUTO_CALLOUT was set on a pattern that had a (?# comment between
an item and its qualifier (for example, A(?#comment)?B) pcre_compile()
@@ -33,7 +33,7 @@ Version 8.39 21-May-2016
pcre_compile() assumed that (?-x) applied to the whole pattern and
consequently mis-compiled it. This bug was found by the LLVM fuzzer.
-8. An call of pcre_copy_named_substring() for a named substring whose number
+8. A call of pcre_copy_named_substring() for a named substring whose number
was greater than the space in the ovector could cause a crash.
9. Yet another buffer overflow bug involved duplicate named groups with a
@@ -88,8 +88,8 @@ Version 8.39 21-May-2016
23. Fix typo causing compile error when 16- or 32-bit JIT is compiled without
UCP support.
-
-24. Refactor to avoid compiler warnings in pcrecpp.cc.
+
+24. Refactor to avoid compiler warnings in pcrecpp.cc.
25. Refactor to fix a typo in pcre_jit_test.c
diff --git a/NEWS b/NEWS
index 2b7e38c..0ca1bab 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,8 @@
News about PCRE releases
------------------------
-Release 8.39 21-May-2016
-------------------------
+Release 8.39 14-June-2016
+-------------------------
Some appropriate PCRE2 JIT improvements have been retro-fitted to PCRE1. Apart
from that, this is another bug-fix release. Note that this library (now called
diff --git a/configure.ac b/configure.ac
index 0e877cd..3cefaf1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,8 +10,8 @@ dnl be defined as -RC2, for example. For real releases, it should be empty.
m4_define(pcre_major, [8])
m4_define(pcre_minor, [39])
-m4_define(pcre_prerelease, [-RC1])
-m4_define(pcre_date, [2016-05-21])
+m4_define(pcre_prerelease, [])
+m4_define(pcre_date, [2016-06-14])
# 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.