From: Ilia Alshanetsky Date: Fri, 19 Jan 2007 00:03:21 +0000 (+0000) Subject: 5.2.1RC3 X-Git-Tag: php-5.2.1RC3~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cbd3a641363a17dc8897e70e80c4829ae660e921;p=php 5.2.1RC3 --- diff --git a/NEWS b/NEWS index 8377bd7feb..ad81c857a1 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? Jan 2007, PHP 5.2.1RC3 +18 Jan 2007, PHP 5.2.1RC3 - Added read-timeout context option "timeout" for HTTP streams. (Hannes, Ilia). - Added CURLOPT_TCP_NODELAY constant to Curl extension. (Sara) diff --git a/configure.in b/configure.in index c8eefea911..2a3775c511 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=1 -EXTRA_VERSION="RC3-dev" +EXTRA_VERSION="RC3" 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 adccbd17c1..e3bdc88e29 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 1 -#define PHP_EXTRA_VERSION "RC3-dev" -#define PHP_VERSION "5.2.1RC3-dev" +#define PHP_EXTRA_VERSION "RC3" +#define PHP_VERSION "5.2.1RC3" #define PHP_VERSION_ID 50201