summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2007-01-04 23:55:56 +0000
committerIlia Alshanetsky <iliaa@php.net>2007-01-04 23:55:56 +0000
commit56a147fbff3360aa792630e831b6892875a2334b (patch)
tree0f0bd53e34856890db2f54da74c78ca6536774d0
parente6c845cb2c9fadc1168e7d5b08415aed2df7982e (diff)
downloadphp-git-56a147fbff3360aa792630e831b6892875a2334b.tar.gz
Back to dev
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 5 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index f9bd970e7b..16d3638af2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,7 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+?? Jan 2007, PHP 5.2.1RC3
+
04 Jan 2007, PHP 5.2.1RC2
- Small optimization of the date() function (Matt,Ilia)
- Removed dependency from SHELL32.DLL. (Dmitry)
diff --git a/configure.in b/configure.in
index e36b50e8fe..58104ec816 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"
+EXTRA_VERSION="RC3-dev"
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 3ede56ec2a..adccbd17c1 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"
-#define PHP_VERSION "5.2.1RC2"
+#define PHP_EXTRA_VERSION "RC3-dev"
+#define PHP_VERSION "5.2.1RC3-dev"
#define PHP_VERSION_ID 50201