1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

5.6.27 will be next

This commit is contained in:
Ferenc Kovacs
2016-09-01 20:27:19 +02:00
parent b2d267d9ee
commit fbb81dd755
3 changed files with 10 additions and 8 deletions

10
NEWS
View File

@@ -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)

View File

@@ -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`

View File

@@ -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