diff options
author | Johannes Schlüter <johannes@php.net> | 2008-12-03 20:40:59 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2008-12-03 20:40:59 +0000 |
commit | 2cfbe8c9ff5077e6bb012233d48f519133a436b9 (patch) | |
tree | c60b37fa36e383a35934552ea72a5496ceb87ad3 | |
parent | cf4a811b57763aa7eadd9af36bc26dad1da27d2a (diff) | |
download | php-git-2cfbe8c9ff5077e6bb012233d48f519133a436b9.tar.gz |
5.3.0. Alpha 3
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 6 insertions, 6 deletions
@@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 200?, PHP 5.3.0 Alpha 3 +04 Dec 2008, PHP 5.3.0 Alpha 3 - Upgraded bundled PCRE to version 7.8. (Nuno) - Upgraded bundled sqlite to version 3.6.6.2. (Scott, Ilia) @@ -74,8 +74,8 @@ PHP NEWS - Fixed bug #46178 (memory leak in ext/phar). (Greg) - Fixed bug #46160 (SPL - Memory leak when exception is thrown in offsetSet). (Felipe) -- Fixed Bug #46147 (after stream seek, appending stream filter reads incorrect data). - (Greg) +- Fixed Bug #46147 (after stream seek, appending stream filter reads incorrect i + data). (Greg) - Fixed bug #46127 (php_openssl_tcp_sockop_accept forgets to set context on accepted stream) (Mark Karpeles, Pierre) - Fixed bug #46115 (Memory leak when calling a method using Reflection). diff --git a/configure.in b/configure.in index c519cad799..45561dd716 100644 --- a/configure.in +++ b/configure.in @@ -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="alpha3-dev" +PHP_EXTRA_VERSION="alpha3" 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` diff --git a/main/php_version.h b/main/php_version.h index ba026676a0..68aeebdcdc 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 3 #define PHP_RELEASE_VERSION 0 -#define PHP_EXTRA_VERSION "alpha3-dev" -#define PHP_VERSION "5.3.0alpha3-dev" +#define PHP_EXTRA_VERSION "alpha3" +#define PHP_VERSION "5.3.0alpha3" #define PHP_VERSION_ID 50300 |