diff options
author | Johannes Schlüter <johannes@php.net> | 2008-08-01 00:46:20 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2008-08-01 00:46:20 +0000 |
commit | fe0e4c260685dab5617449703485f63cc0b152a7 (patch) | |
tree | bfb785884d4db484173da3d150dc85fb5f8eef44 | |
parent | 346b97afb49c4faf265ee887e5858a8861672fd2 (diff) | |
download | php-git-fe0e4c260685dab5617449703485f63cc0b152a7.tar.gz |
back to dev
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? ??? 200?, PHP 5.3.0 Alpha 2 + 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 edb7b63985..185a5dbf72 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="alpha1" +PHP_EXTRA_VERSION="alpha2-dev" 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 a16f82b27b..aa301ca1c9 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 "alpha1" -#define PHP_VERSION "5.3.0alpha1" +#define PHP_EXTRA_VERSION "alpha2-dev" +#define PHP_VERSION "5.3.0alpha2-dev" #define PHP_VERSION_ID 50300 |