]> granicus.if.org Git - php/commitdiff
5.6.24RC1 php-5.6.24RC1
authorFerenc Kovacs <tyra3l@gmail.com>
Wed, 6 Jul 2016 23:43:25 +0000 (01:43 +0200)
committerFerenc Kovacs <tyra3l@gmail.com>
Wed, 6 Jul 2016 23:43:25 +0000 (01:43 +0200)
NEWS
configure.in
main/php_version.h

diff --git a/NEWS b/NEWS
index 2e1bd3d517ca9543d3fb95187c448f1472e188ce..6215ecc3e0aed4debcb1b3c3980575cbafdd6a8f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,20 +1,18 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2016, PHP 5.6.24
+07 Jul 2016, PHP 5.6.24RC1
 
 - Core:
   . Fix bug #71936 (Segmentation fault destroying HTTP_RAW_POST_DATA).
     (mike dot laspina at gmail dot com, Remi)
   . Fix bug #72496 (Cannot declare public method with signature incompatible
     with parent private method). (Pedro Magalhães)
+  . Fix bug #72138 (Integer Overflow in Length of String-typed ZVAL). (Stas)
 
 - bz2:
   . Fix bug #72447 (Type Confusion in php_bz2_filter_create()). (gogil at 
     stealien dot com).
 
-- Core:
-  . Fix bug #72138 (Integer Overflow in Length of String-typed ZVAL). (Stas)
-
 - EXIF:
   . Fixed bug #50845 (exif_read_data() returns corrupted exif headers).
     (Bartosz Dziewoński)
index 0cd99df661e3fa4d659eb331ba47b9b731f93283..d3b20561de17d88f5d4da0c7712278d32a136dcc 100644 (file)
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
 PHP_MAJOR_VERSION=5
 PHP_MINOR_VERSION=6
 PHP_RELEASE_VERSION=24
-PHP_EXTRA_VERSION="-dev"
+PHP_EXTRA_VERSION="RC1"
 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`
 
index e2fbef50ba166a310b5cb2f76c241e4b0e5401fe..2f8f634febb3efca979f9df17e39549f65433a56 100644 (file)
@@ -3,6 +3,6 @@
 #define PHP_MAJOR_VERSION 5
 #define PHP_MINOR_VERSION 6
 #define PHP_RELEASE_VERSION 24
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.6.24-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.6.24RC1"
 #define PHP_VERSION_ID 50624