summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2007-08-30 07:40:13 +0000
committerSebastian Bergmann <sebastian@php.net>2007-08-30 07:40:13 +0000
commit78e0e02179669d11dda9299678bfccabf0c7ddba (patch)
tree674a7902b0bf6ddd774fa82525442b1f54bf5a70
parent5081b960e5f9686423804a4c1702c8cdf996f369 (diff)
downloadphp-git-78e0e02179669d11dda9299678bfccabf0c7ddba.tar.gz
Back to -dev.
-rw-r--r--configure.in4
-rw-r--r--main/php_version.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/configure.in b/configure.in
index 452260ed33..d2426384b3 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=4
-PHP_EXTRA_VERSION=""
+PHP_RELEASE_VERSION=5
+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 595adec509..e6694c66d2 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 4
-#define PHP_EXTRA_VERSION ""
-#define PHP_VERSION "5.2.4"
-#define PHP_VERSION_ID 50204
+#define PHP_RELEASE_VERSION 5
+#define PHP_EXTRA_VERSION "-dev"
+#define PHP_VERSION "5.2.5-dev"
+#define PHP_VERSION_ID 50205