summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2008-04-30 18:33:33 +0000
committerIlia Alshanetsky <iliaa@php.net>2008-04-30 18:33:33 +0000
commitba307b2affc874cd30552c5c57ff5e79411b7036 (patch)
treef306dc78f0e937a8644a3ca8f8b3445d0316e9eb
parent6a7f02001db76ba8f2756df3e5d8172d432bbcb2 (diff)
downloadphp-git-ba307b2affc874cd30552c5c57ff5e79411b7036.tar.gz
Back to dev
-rw-r--r--NEWS2
-rw-r--r--configure.in4
-rw-r--r--main/php_version.h8
3 files changed, 8 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 17f5343af6..240754d792 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,7 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+?? ??? 2008, PHP 5.2.7
+
01 May 2008, PHP 5.2.6
- Fixed two possible crashes inside posix extension (Tony)
- Fixed incorrect heredoc handling when label is used within the block.
diff --git a/configure.in b/configure.in
index a74bf24b99..f8fef85c77 100644
--- a/configure.in
+++ b/configure.in
@@ -41,8 +41,8 @@ AC_CONFIG_HEADER(main/php_config.h)
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=2
-PHP_RELEASE_VERSION=6
-PHP_EXTRA_VERSION=""
+PHP_RELEASE_VERSION=7
+PHP_EXTRA_VERSION="-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 aa8b8c237f..58f8abcc7d 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -2,7 +2,7 @@
/* edit configure.in to change version number */
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 2
-#define PHP_RELEASE_VERSION 6
-#define PHP_EXTRA_VERSION ""
-#define PHP_VERSION "5.2.6"
-#define PHP_VERSION_ID 50206
+#define PHP_RELEASE_VERSION 7
+#define PHP_EXTRA_VERSION "-dev"
+#define PHP_VERSION "5.2.7-dev"
+#define PHP_VERSION_ID 50207