]> granicus.if.org Git - php/commitdiff
prep for 5.4.27 rc1
authorStanislav Malyshev <stas@php.net>
Wed, 19 Mar 2014 06:14:18 +0000 (23:14 -0700)
committerStanislav Malyshev <stas@php.net>
Wed, 19 Mar 2014 06:19:09 +0000 (23:19 -0700)
NEWS
configure.in
main/php_version.h

diff --git a/NEWS b/NEWS
index acd437f391ccdd4b65b05db6780c5ba28c0faa4f..302ea6c0d16de304aef0e7678003bc3a4087eb84 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,16 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+?? ??? 2014, PHP 5.4.28
+
 ?? ??? 2014, PHP 5.4.27
 
 - Core:
   . Fixed bug #60602 (proc_open() changes environment array) (Tjerk)
 
+- FPM:
+  . Added clear_env configuration directive to disable clearenv() call.
+  (Github PR# 598, Paul Annesley)
+
 - GMP
   . fixed bug#66872 (invalid argument crashes gmp_testbit) (Pierre)
 
@@ -18,7 +24,7 @@ PHP                                                                        NEWS
 - Openssl:
   . Fixed bug #66833 (Default disgest algo is still MD5, switch to SHA1). (Remi)
   
-?? ??? 2014, PHP 5.4.26
+06 Mar 2014, PHP 5.4.26
 
 - JSON:
   . Fixed bug #65753 (JsonSerializeable couldn't implement on module extension)
@@ -28,10 +34,6 @@ PHP                                                                        NEWS
   . Fixed bug #66731 (file: infinite recursion). (CVE-2014-1943) (Remi)
   . Fixed bug #66820 (out-of-bounds memory access in fileinfo). (Remi)
 
-- FPM:
-  . Added clear_env configuration directive to disable clearenv() call.
-  (Github PR# 598, Paul Annesley)
-
 - LDAP:
   . Implemented ldap_modify_batch (https://wiki.php.net/rfc/ldap_modify_batch).
   (Ondřej Hošek)
index dcd3e05fdb27299aedf98825073ea966a32d81bb..d197f1e7861e35767ea3c68c5125e42d9f96be47 100644 (file)
@@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
 
 PHP_MAJOR_VERSION=5
 PHP_MINOR_VERSION=4
-PHP_RELEASE_VERSION=27
+PHP_RELEASE_VERSION=28
 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 f887b489acf8fe2e721baedfb603a2aea0b91de3..fee0803878cd0f85ce530734caadf001c5cdd63f 100644 (file)
@@ -2,7 +2,7 @@
 /* edit configure.in to change version number */
 #define PHP_MAJOR_VERSION 5
 #define PHP_MINOR_VERSION 4
-#define PHP_RELEASE_VERSION 27
+#define PHP_RELEASE_VERSION 28
 #define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.4.27-dev"
-#define PHP_VERSION_ID 50427
+#define PHP_VERSION "5.4.28-dev"
+#define PHP_VERSION_ID 50428