johannes Wed, 05 Jan 2011 13:39:30 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=307121
Log: - This will be PHP 5.3.6 Changed paths: U php/php-src/branches/PHP_5_3/NEWS U php/php-src/branches/PHP_5_3/configure.in U php/php-src/branches/PHP_5_3/main/php_version.h Modified: php/php-src/branches/PHP_5_3/NEWS =================================================================== --- php/php-src/branches/PHP_5_3/NEWS 2011-01-05 13:35:24 UTC (rev 307120) +++ php/php-src/branches/PHP_5_3/NEWS 2011-01-05 13:39:30 UTC (rev 307121) @@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2011, PHP 5.3.5 +?? ??? 2011, PHP 5.3.6 - Upgraded bundled Sqlite3 to version 3.7.4. (Ilia) - Upgraded bundled PCRE to version 8.11. (Ilia) @@ -8,7 +8,6 @@ . Indirect reference to $this fails to resolve if direct $this is never used in method. (Scott) . Fixed Bug #53629 (memory leak inside highlight_string()). (Hannes, Ilia) - . Fixed Bug #53632 (infinite loop with x87 fpu). (Scott, Rasmus) - Core: . Fixed bug #48484 (array_product() always returns 0 for an empty array). @@ -101,6 +100,9 @@ . Fixed bug #53603 (ZipArchive should quiet stat errors). (brad dot froehle at gmail dot com, Gustavo) +?? ??? 2011, PHP 5.3.5 +- Fixed Bug #53632 (infinite loop with x87 fpu). (Scott, Rasmus) + 09 Dec 2010, PHP 5.3.4 - Upgraded bundled Sqlite3 to version 3.7.3. (Ilia) - Upgraded bundled PCRE to version 8.10. (Ilia) Modified: php/php-src/branches/PHP_5_3/configure.in =================================================================== --- php/php-src/branches/PHP_5_3/configure.in 2011-01-05 13:35:24 UTC (rev 307120) +++ php/php-src/branches/PHP_5_3/configure.in 2011-01-05 13:39:30 UTC (rev 307121) @@ -41,7 +41,7 @@ PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=3 -PHP_RELEASE_VERSION=5 +PHP_RELEASE_VERSION=6 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` Modified: php/php-src/branches/PHP_5_3/main/php_version.h =================================================================== --- php/php-src/branches/PHP_5_3/main/php_version.h 2011-01-05 13:35:24 UTC (rev 307120) +++ php/php-src/branches/PHP_5_3/main/php_version.h 2011-01-05 13:39:30 UTC (rev 307121) @@ -2,7 +2,7 @@ /* edit configure.in to change version number */ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 3 -#define PHP_RELEASE_VERSION 5 +#define PHP_RELEASE_VERSION 6 #define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "5.3.5-dev" -#define PHP_VERSION_ID 50305 +#define PHP_VERSION "5.3.6-dev" +#define PHP_VERSION_ID 50306
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php