johannes Tue, 23 Feb 2010 18:47:15 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=295431
Log: PHP 5.3.2 RC3 Changed paths: U php/php-src/branches/PHP_5_3_2/NEWS U php/php-src/branches/PHP_5_3_2/configure.in U php/php-src/branches/PHP_5_3_2/main/php_version.h Modified: php/php-src/branches/PHP_5_3_2/NEWS =================================================================== --- php/php-src/branches/PHP_5_3_2/NEWS 2010-02-23 18:28:13 UTC (rev 295430) +++ php/php-src/branches/PHP_5_3_2/NEWS 2010-02-23 18:47:15 UTC (rev 295431) @@ -1,13 +1,12 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2010, PHP 5.3.2 RC 3 +23 Feb 2010, PHP 5.3.2 RC 3 - Improved crypt support for edge cases (UFC compatibility). (Solar Designer, Joey, Pierre) -- Fixed crypt's blowfish sanity check of the "setting" string, to reject iteration - counts encoded as 36 through 39. (Pierre) +- Fixed crypt's blowfish sanity check of the "setting" string, to reject + iteration counts encoded as 36 through 39. (Pierre) - Fixed #51059 (crypt crashes when invalid salt are given). (Pierre) - 12 Feb 2010, PHP 5.3.2 RC 2 - Upgraded bundled sqlite to version 3.6.22. (Ilia) - Upgraded bundled libmagic to version 5.03. (Mikko) Modified: php/php-src/branches/PHP_5_3_2/configure.in =================================================================== --- php/php-src/branches/PHP_5_3_2/configure.in 2010-02-23 18:28:13 UTC (rev 295430) +++ php/php-src/branches/PHP_5_3_2/configure.in 2010-02-23 18:47:15 UTC (rev 295431) @@ -42,7 +42,7 @@ PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=3 PHP_RELEASE_VERSION=2 -PHP_EXTRA_VERSION="RC3-dev" +PHP_EXTRA_VERSION="RC3" 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_2/main/php_version.h =================================================================== --- php/php-src/branches/PHP_5_3_2/main/php_version.h 2010-02-23 18:28:13 UTC (rev 295430) +++ php/php-src/branches/PHP_5_3_2/main/php_version.h 2010-02-23 18:47:15 UTC (rev 295431) @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 3 #define PHP_RELEASE_VERSION 2 -#define PHP_EXTRA_VERSION "RC3-dev" -#define PHP_VERSION "5.3.2RC3-dev" +#define PHP_EXTRA_VERSION "RC3" +#define PHP_VERSION "5.3.2RC3" #define PHP_VERSION_ID 50302
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php