diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2007-05-03 01:16:50 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2007-05-03 01:16:50 +0000 |
commit | a64c73121d063ca28fc15fa1befc58a8e7d83a33 (patch) | |
tree | f7ad9db9bb547ec51f18a924a315d2dced2358c5 | |
parent | 0f474f94740a0522fac2e0d8115c2a334a30025b (diff) | |
download | php-git-a64c73121d063ca28fc15fa1befc58a8e7d83a33.tar.gz |
Back to dev
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | main/php_version.h | 8 |
3 files changed, 8 insertions, 6 deletions
@@ -1,5 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? ??? 2007, PHP 5.2.3 + 03 May 2007, PHP 5.2.2 - Improved bundled GD . Sync to 2.0.35 diff --git a/configure.in b/configure.in index b697ee73d0..0d166cdfcf 100644 --- a/configure.in +++ b/configure.in @@ -43,8 +43,8 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=5 MINOR_VERSION=2 -RELEASE_VERSION=2 -EXTRA_VERSION="" +RELEASE_VERSION=3 +EXTRA_VERSION="-dev" PHP_VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION" PHP_VERSION_ID=`expr [$]MAJOR_VERSION \* 10000 + [$]MINOR_VERSION \* 100 + [$]RELEASE_VERSION` diff --git a/main/php_version.h b/main/php_version.h index 1972edd448..b503f86583 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -2,7 +2,7 @@ /* edit configure.in to change version number */ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 2 -#define PHP_RELEASE_VERSION 2 -#define PHP_EXTRA_VERSION "" -#define PHP_VERSION "5.2.2" -#define PHP_VERSION_ID 50202 +#define PHP_RELEASE_VERSION 3 +#define PHP_EXTRA_VERSION "-dev" +#define PHP_VERSION "5.2.3-dev" +#define PHP_VERSION_ID 50203 |