From: Ilia Alshanetsky Date: Fri, 25 May 2007 00:07:57 +0000 (+0000) Subject: Back to dev X-Git-Tag: php-5.2.3~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9998f67c9162c11a570673c4e4d0376cb545fbd5;p=php Back to dev --- diff --git a/NEWS b/NEWS index a96c14e247..500d9e04ce 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,8 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? Jun 2007, PHP 5.2.3 + + 24 May 2007, PHP 5.2.3RC1 - Changed CGI install target to php-cgi and 'make install' to install CLI when CGI is selected. (Jani) diff --git a/configure.in b/configure.in index 5eab630a4e..87d89a49bf 100644 --- a/configure.in +++ b/configure.in @@ -44,7 +44,7 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=5 MINOR_VERSION=2 RELEASE_VERSION=3 -EXTRA_VERSION="RC1" +EXTRA_VERSION="RC2-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 4ba79a9a59..4300bae3a9 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 2 #define PHP_RELEASE_VERSION 3 -#define PHP_EXTRA_VERSION "RC1" -#define PHP_VERSION "5.2.3RC1" +#define PHP_EXTRA_VERSION "RC2-dev" +#define PHP_VERSION "5.2.3RC2-dev" #define PHP_VERSION_ID 50203