summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schlüter <johannes@php.net>2008-08-01 00:09:24 +0000
committerJohannes Schlüter <johannes@php.net>2008-08-01 00:09:24 +0000
commit346b97afb49c4faf265ee887e5858a8861672fd2 (patch)
treedae2cb6805f416b9a198f8e342c2e1685a69410e
parent06337965ae3eba6538bf1258565d6c83211347f5 (diff)
downloadphp-git-346b97afb49c4faf265ee887e5858a8861672fd2.tar.gz
5.3.0alpha1
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 09ccff99a6..b3b336b70d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 20??, PHP 5.3.0
+01 Aug 2008, PHP 5.3.0 Alpha 1
- Upgraded bundled PCRE to version 7.7 (Nuno)
- Upgraded bundled PDO sqlite to version 3.5.9. (Scott)
diff --git a/configure.in b/configure.in
index 14ee6cd19a..edb7b63985 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="-dev"
+PHP_EXTRA_VERSION="alpha1"
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 f7fe777f98..a16f82b27b 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 "-dev"
-#define PHP_VERSION "5.3.0-dev"
+#define PHP_EXTRA_VERSION "alpha1"
+#define PHP_VERSION "5.3.0alpha1"
#define PHP_VERSION_ID 50300