summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2006-12-15 01:21:36 +0000
committerIlia Alshanetsky <iliaa@php.net>2006-12-15 01:21:36 +0000
commit0ee7c304531dfa84a4ce7648628cd60927f4d64a (patch)
tree9f61207e42197b008ada3c02c9a1555574f53bcc
parent8f5310afad0eeef6f2e45a03f6ff7d4a2a7653ce (diff)
downloadphp-git-0ee7c304531dfa84a4ce7648628cd60927f4d64a.tar.gz
5.2.1RC1
-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 91ce7c5440..3bd9f4608a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2007, PHP 5.2.1
+14 Dec 2006, PHP 5.2.1RC1
- Added a meta tag to phpinfo() output to prevent search engines from indexing
the page. (Ilia)
- Added new function, sys_get_temp_dir(). (Hartmut)
diff --git a/configure.in b/configure.in
index 74fc8804fd..c0cf9f3119 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="-dev"
+EXTRA_VERSION="RC1"
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 9534e01c4c..69ed0f4799 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 "-dev"
-#define PHP_VERSION "5.2.1-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.2.1RC1"
#define PHP_VERSION_ID 50201