]> granicus.if.org Git - php/commitdiff
prepare for next
authorAnatol Belski <ab@php.net>
Tue, 30 Aug 2016 12:10:54 +0000 (14:10 +0200)
committerAnatol Belski <ab@php.net>
Tue, 30 Aug 2016 12:11:22 +0000 (14:11 +0200)
NEWS
configure.in
main/php_version.h

diff --git a/NEWS b/NEWS
index 4c21c43677b3b665f95b769944ed8a09029854dc..8fd9f3ceed2ba93b179b933c3a517801dcc8a15a 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,12 @@ PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2016 PHP 7.0.11
 
+- Standard:
+  . Fixed bug #71882 (Negative ftruncate() on php://memory exhausts memory).
+    (cmb)
+
+15 Sep 2016 PHP 7.0.11
+
 - Core:
   . Fixed bug #72944 (Null pointer deref in zval_delref_p). (Dmitry)
   . Fixed bug #72943 (assign_dim on string doesn't reset hval). (Laruence)
@@ -87,8 +93,6 @@ PHP                                                                        NEWS
   . Fixed bug #72278 (getimagesize returning FALSE on valid jpg). (cmb)
   . Fixed bug #65550 (get_browser() incorrectly parses entries with "+" sign).
     (cmb)
-  . Fixed bug #71882 (Negative ftruncate() on php://memory exhausts memory).
-    (cmb)
 
 - Streams:
   . Fixed bug #72853 (stream_set_blocking doesn't work). (Laruence)
index 95bb947c350959f14c3bea91a7369b0b5e02f1e8..7f60f4ce5171965b14e8648b29ddeb20302677dd 100644 (file)
@@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
 
 PHP_MAJOR_VERSION=7
 PHP_MINOR_VERSION=0
-PHP_RELEASE_VERSION=11
+PHP_RELEASE_VERSION=12
 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`
index 7a7a23b330867a9f1f72dff96e7574e101c11e04..2b2c7ab4f6a3ef1e5c095c306c2842f28f27bc3d 100644 (file)
@@ -2,7 +2,7 @@
 /* edit configure.in to change version number */
 #define PHP_MAJOR_VERSION 7
 #define PHP_MINOR_VERSION 0
-#define PHP_RELEASE_VERSION 11
+#define PHP_RELEASE_VERSION 12
 #define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.0.11-dev"
-#define PHP_VERSION_ID 70011
+#define PHP_VERSION "7.0.12-dev"
+#define PHP_VERSION_ID 70012