This commit is contained in:
Johannes Schlüter 2009-06-10 18:18:43 +00:00
parent 32f91ba388
commit 10d976d225
3 changed files with 8 additions and 8 deletions

10
NEWS
View File

@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2009, PHP 5.3.0 RC 3
11 Jun 2009, PHP 5.3.0 RC 3
- Upgraded bundled sqlite to version 3.6.14.2. (Scott, Ilia)
- Upgraded bundled libmagic to 5.03 in the fileinfo extension. (Scott)
@ -17,8 +17,8 @@ PHP NEWS
- Added support for ACL (is_writable, is_readable, reports now correct results)
on Windows. (Pierre, Venkat Raman Don, Kanwaljeet Singla)
- Fixed bug #48493 (spl_autoload_register() doesn't work correctly when prepending
functions). (Scott)
- Fixed bug #48493 (spl_autoload_register() doesn't work correctly when
prepending functions). (Scott)
- Fixed bug #48257 (PharData throws exception with non-phar tar). (Greg)
- Fixed bug #48227 (NumberFormatter::format leaks memory). (Felipe)
- Fixed bug #48200 (compile failure with mbstring.c when
@ -29,8 +29,8 @@ PHP NEWS
(Kanwaljeet Singla, Venkat Raman Don, Pierre)
- Fixed bug #38802 (max_redirects and ignore_errors).
(patch by datibbaw@php.net)
- Fixed isset() on sub-directories (isset("blah") if file "blah/foo.php" exists).
(Greg)
- Fixed isset() on sub-directories (isset("blah") if file "blah/foo.php"
exists). (Greg)
- Fixed security vulnerability in phar's handling of long tar filenames. (Greg)
- Fixed potential segfault with converting phars containing metadata to other
formats. (Greg)

View File

@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h)
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=3
PHP_RELEASE_VERSION=0
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`

View File

@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 3
#define PHP_RELEASE_VERSION 0
#define PHP_EXTRA_VERSION "RC3-dev"
#define PHP_VERSION "5.3.0RC3-dev"
#define PHP_EXTRA_VERSION "RC3"
#define PHP_VERSION "5.3.0RC3"
#define PHP_VERSION_ID 50300