summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 5 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 2e1bd3d517..6215ecc3e0 100644
--- 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)
diff --git a/configure.in b/configure.in
index 0cd99df661..d3b20561de 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=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`
diff --git a/main/php_version.h b/main/php_version.h
index e2fbef50ba..2f8f634feb 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -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