summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2007-02-07 00:45:04 +0000
committerIlia Alshanetsky <iliaa@php.net>2007-02-07 00:45:04 +0000
commitee626ccb51d2a9b0646d464a386dc5c101eab654 (patch)
tree95942d5c1f8d9652827f554b2029158f20e58704
parent629d7cf43f5ac1be56e5205cc6f6be2f43d1d963 (diff)
downloadphp-git-ee626ccb51d2a9b0646d464a386dc5c101eab654.tar.gz
5.2.1
-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 44023082c2..dd45cf0f86 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2007, PHP 5.2.1
+08 Feb 2007, PHP 5.2.1
- Added read-timeout context option "timeout" for HTTP streams. (Hannes, Ilia).
- Added CURLOPT_TCP_NODELAY constant to Curl extension. (Sara)
- Added support for hex numbers of any size. (Matt)
diff --git a/configure.in b/configure.in
index 23f773cc81..a491a702fb 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="RC5-dev"
+EXTRA_VERSION=""
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 d9097120bf..d2e8383a1d 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 "RC5-dev"
-#define PHP_VERSION "5.2.1RC5-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.2.1"
#define PHP_VERSION_ID 50201