summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 680298fba3..12239b812f 100644
--- a/NEWS
+++ b/NEWS
@@ -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