summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS8
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h6
3 files changed, 12 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 4587c5bae3..a46a8e01b8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,13 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+29 Aug 2019, PHP 7.1.32
+
+- mbstring:
+ . Fixed CVE-2019-13224 (don't allow different encodings for onig_new_deluxe) (stas)
+
+- pcre:
+ . Fixed bug #75457 (heap use-after-free in pcrelib) (cmb)
+
01 Aug 2019, PHP 7.1.31
- SQLite:
diff --git a/configure.in b/configure.in
index 09d43fecd0..9f05672eb0 100644
--- a/configure.in
+++ b/configure.in
@@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=7
PHP_MINOR_VERSION=1
-PHP_RELEASE_VERSION=31
+PHP_RELEASE_VERSION=32
PHP_EXTRA_VERSION=""
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
diff --git a/main/php_version.h b/main/php_version.h
index e7dfcce9e1..829754b3bd 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -2,7 +2,7 @@
/* edit configure.in to change version number */
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 1
-#define PHP_RELEASE_VERSION 31
+#define PHP_RELEASE_VERSION 32
#define PHP_EXTRA_VERSION ""
-#define PHP_VERSION "7.1.31"
-#define PHP_VERSION_ID 70131
+#define PHP_VERSION "7.1.32"
+#define PHP_VERSION_ID 70132