diff options
| -rw-r--r-- | NEWS | 9 | ||||
| -rw-r--r-- | configure.in | 2 | ||||
| -rw-r--r-- | main/php_version.h | 4 |
3 files changed, 10 insertions, 5 deletions
@@ -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 |
