summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2007-01-26 00:15:03 +0000
committerIlia Alshanetsky <iliaa@php.net>2007-01-26 00:15:03 +0000
commit15bcf9e38eb20b95b6b522d6347d45bc5290cbcf (patch)
tree5b1c090a63260984e5428df40381a8d17ddbfef2
parent46baad774fb7e59782be10a09981746db799bd1c (diff)
downloadphp-git-15bcf9e38eb20b95b6b522d6347d45bc5290cbcf.tar.gz
5.2.1RC4
-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 9b2a9eead5..fe56040754 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? Jan 2007, PHP 5.2.1RC4
+25 Jan 2007, PHP 5.2.1RC4
- Fixed PECL bug #7295 (ORA-01405: fetched column value is NULL on LOB fields).
(Tony)
- Fixed bug #40200 (The FastCgi version has different realpath results than
diff --git a/configure.in b/configure.in
index 637b34d64b..7b1fd591ed 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="RC4-dev"
+EXTRA_VERSION="RC4"
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 4b59caa2ba..8983d55ca2 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 "RC4-dev"
-#define PHP_VERSION "5.2.1RC4-dev"
+#define PHP_EXTRA_VERSION "RC4"
+#define PHP_VERSION "5.2.1RC4"
#define PHP_VERSION_ID 50201