summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2007-11-01 22:37:35 +0000
committerIlia Alshanetsky <iliaa@php.net>2007-11-01 22:37:35 +0000
commit79cd4dc1c3be404fae7fde6f330ed47f217838b5 (patch)
tree24ebde873d3a3dc223ee1dffde933d65fea8f9b3
parente3eb1b9bed4766f3a03f9300d24d02b0c58b12c6 (diff)
downloadphp-git-79cd4dc1c3be404fae7fde6f330ed47f217838b5.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 16a85afd42..f352b0e63d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,7 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+?? Nov 2007 , PHP 5.2.5
+
01 Nov 2007, PHP 5.2.5RC2
- Added ability to control memory consumption between request using
ZEND_MM_COMPACT environment variable. (Dmitry)
diff --git a/configure.in b/configure.in
index b8578d04c3..b36a70ea67 100644
--- a/configure.in
+++ b/configure.in
@@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h)
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=2
PHP_RELEASE_VERSION=5
-PHP_EXTRA_VERSION="RC2"
+PHP_EXTRA_VERSION="RC3-dev"
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
diff --git a/main/php_version.h b/main/php_version.h
index 2dc2df44a5..57b59e2807 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 5
-#define PHP_EXTRA_VERSION "RC2"
-#define PHP_VERSION "5.2.5RC2"
+#define PHP_EXTRA_VERSION "RC3-dev"
+#define PHP_VERSION "5.2.5RC3-dev"
#define PHP_VERSION_ID 50205