From: Ferenc Kovacs Date: Thu, 1 Sep 2016 18:27:19 +0000 (+0200) Subject: 5.6.27 will be next X-Git-Tag: php-7.1.0RC2~56^2~23^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbb81dd755db95e63228fb764ef8edc40db9152f;p=php 5.6.27 will be next --- diff --git a/NEWS b/NEWS index 454c97da4a..ef86525f25 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,8 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2016, PHP 5.6.26 +?? ??? 2016, PHP 5.6.27 + +15 Sep 2016, PHP 5.6.26 - Core: . Fixed bug #72907 (null pointer deref, segfault in gc_remove_zval_from_buffer @@ -14,9 +16,6 @@ PHP NEWS . Fixed bug #70825 (Cannot fetch multiple values with group in ini file). (cmb) -- Streams: - . Fixed bug #72853 (stream_set_blocking doesn't work). (Laruence) - - FTP: . Fixed bug #70195 (Cannot upload file using ftp_put to FTPES with require_ssl_reuse). (Benedict Singer) @@ -54,6 +53,9 @@ PHP NEWS . Fixed bug #71882 (Negative ftruncate() on php://memory exhausts memory). (cmb) +- Streams: + . Fixed bug #72853 (stream_set_blocking doesn't work). (Laruence) + - XML: . Fixed bug #72085 (SEGV on unknown address zif_xml_parse). (cmb) diff --git a/configure.in b/configure.in index be79a02231..bc739f62b9 100644 --- a/configure.in +++ b/configure.in @@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...); PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=6 -PHP_RELEASE_VERSION=26 +PHP_RELEASE_VERSION=27 PHP_EXTRA_VERSION="-dev" 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 8fa4040c5e..1868cf0c38 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 5 #define PHP_MINOR_VERSION 6 -#define PHP_RELEASE_VERSION 26 +#define PHP_RELEASE_VERSION 27 #define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "5.6.26-dev" -#define PHP_VERSION_ID 50626 +#define PHP_VERSION "5.6.27-dev" +#define PHP_VERSION_ID 50627