summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2007-01-04 23:52:29 +0000
committerIlia Alshanetsky <iliaa@php.net>2007-01-04 23:52:29 +0000
commite6c845cb2c9fadc1168e7d5b08415aed2df7982e (patch)
tree82b1bf4a8a1fb7ee17127586cbba63be4a41337f
parent7ba84b8807eddac346df75fcaea0f6ad3295712c (diff)
downloadphp-git-e6c845cb2c9fadc1168e7d5b08415aed2df7982e.tar.gz
5.2.1RC2
-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 3380472dbc..f9bd970e7b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? Dec 2006, PHP 5.2.1RC2
+04 Jan 2007, PHP 5.2.1RC2
- Small optimization of the date() function (Matt,Ilia)
- Removed dependency from SHELL32.DLL. (Dmitry)
- Added function stream_socket_shutdown(). It is a wraper for system shutdown()
diff --git a/configure.in b/configure.in
index 885beba409..e36b50e8fe 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="RC2-dev"
+EXTRA_VERSION="RC2"
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 d02a1391c5..3ede56ec2a 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 "RC2-dev"
-#define PHP_VERSION "5.2.1RC2-dev"
+#define PHP_EXTRA_VERSION "RC2"
+#define PHP_VERSION "5.2.1RC2"
#define PHP_VERSION_ID 50201