summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Pauli <jpauli@php.net>2016-02-02 10:38:22 +0100
committerJulien Pauli <jpauli@php.net>2016-02-02 10:38:22 +0100
commit795a3bd4ab657f43372b17c564fc407433d9d893 (patch)
tree8228d41aa605524a5f16c9d1fb02ce180d5c7a63
parent2a7d8c0a06de8123034b136b0c717576b6e36fae (diff)
downloadphp-git-795a3bd4ab657f43372b17c564fc407433d9d893.tar.gz
Prepare 5.5.32
-rw-r--r--NEWS9
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 10 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index adfa1e1428..80cfb97eef 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-** PHP 5.5 is in security-only mode , please do not commit to this branch **
-?? ??? 2016, PHP 5.5.32
+04 Feb 2016, PHP 5.5.32
- Core:
. Fixed bug #71039 (exec functions ignore length but look for NULL termination).
@@ -10,6 +9,12 @@ PHP NEWS
input). (Leo Gaspard)
. Fixed bug #71459 (Integer overflow in iptcembed()). (Stas)
+- GD:
+ . Improved the fix for bug #70976. (Remi)
+
+- PCRE:
+ . Upgraded pcrelib to 8.38.
+
- Phar:
. Fixed bug #71354 (Heap corruption in tar/zip/phar parser). (Stas)
. Fixed bug #71391 (NULL Pointer Dereference in phar_tar_setupmetadata()).
diff --git a/configure.in b/configure.in
index f8f376ecb6..7e79cc4e75 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=5
PHP_RELEASE_VERSION=32
-PHP_EXTRA_VERSION="-dev"
+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 10c1d32c80..f3cb9a00db 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 5
#define PHP_RELEASE_VERSION 32
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.5.32-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.5.32"
#define PHP_VERSION_ID 50532