From: Ilia Alshanetsky Date: Tue, 14 Dec 2004 16:07:50 +0000 (+0000) Subject: 4.3.10 X-Git-Tag: php-4.3.10~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a4b7f9c30798002f1b4e7fb6b3eb58957e60f88;p=php 4.3.10 --- diff --git a/NEWS b/NEWS index e3e0d27bc1..afbb5db6f4 100644 --- a/NEWS +++ b/NEWS @@ -1,23 +1,16 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? Dec 2004, Version 4.3.10 +15 Dec 2004, Version 4.3.10 +- Added the %F modifier to *printf to render a non-locale-aware representation + of a float with the . as decimal separator. (Derick) +- Fixed a bug in addslashes() handling of the '\0' character. (Ilia) +- Backported Marcus' foreach() speedup patch from PHP 5.x. (Derick) +- Fixed potential problems with unserializing invalid serialize data. (Marcus) - Fixed bug #31034 (Problem with non-existing iconv header file). (Derick) - Fixed bug #31024 (Crash in fgetcsv() with negative length). (Ilia) - Fixed bug #31019 (Logic error mssql library checking). (Frank) -- Fixed bug #28598 (Lost support for MS Symbol fonts). (Pierre) -- Fixed bug #28228 (NULL decimal separator is not being handled correctly). - (Ilia) - -07 Dec 2004, Version 4.3.10RC2 - Fixed bug #30995 (snmp extension does not build with net-snmp 5.2). (Ilia) - Fixed bug #30990 (allow popen() on *NIX to accept 'b' flag). (Ilia) - -23 Nov 2004, Version 4.3.10RC1 -- Added the %F modifier to *printf to render a non-locale-aware representation - of a float with the . as decimal seperator. (Derick) -- Fixed a bug in addslashes() handling of the '\0' character. (Ilia) -- Backported Marcus' foreach() speedup patch from PHP 5.x. (Derick) -- Fixed potential problems with unserializing invalid serialize data. (Marcus) - Fixed bug #30826 (Certain reference relations cannot be unserialized properly). (Ilia) - Fixed bug #30750 (Meaningful error message when upload directory is not @@ -52,7 +45,10 @@ PHP 4 NEWS - Fixed bug #29805 (HTTP Authentication Issues). (Uwe Schindler) - Fixed bug #29418 (double free when openssl_csr_new fails). (Kamesh Jayachandran). -- Fixed bug #28325 (Circular references not properly serialised). (Moriyoshi) +- Fixed bug #28598 (Lost support for MS Symbol fonts). (Pierre) +- Fixed bug #28325 (Circular references not properly serialized). (Moriyoshi) +- Fixed bug #28228 (NULL decimal separator is not being handled correctly). + (Ilia) - Fixed bug #27469 (serialize() objects of incomplete class). (Dmitry) 22 Sep 2004, Version 4.3.9 diff --git a/configure.in b/configure.in index 6ac561255e..0cd240b61c 100644 --- a/configure.in +++ b/configure.in @@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=4 MINOR_VERSION=3 RELEASE_VERSION=10 -EXTRA_VERSION="RC3-dev" +EXTRA_VERSION="" VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION" dnl Define where extension directories are located in the configure context diff --git a/main/php_version.h b/main/php_version.h index 1086b09b76..320e992a9f 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,5 +3,5 @@ #define PHP_MAJOR_VERSION 4 #define PHP_MINOR_VERSION 3 #define PHP_RELEASE_VERSION 10 -#define PHP_EXTRA_VERSION "RC3-dev" -#define PHP_VERSION "4.3.10RC3-dev" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "4.3.10"