summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Soria Parra <dsp@php.net>2013-04-25 08:06:51 +0200
committerDavid Soria Parra <dsp@php.net>2013-04-25 08:06:51 +0200
commita2a22c46686604f07a06fc6805368c0c281f7808 (patch)
tree5028aac3bfe32467184988ddc361675ef432a66e
parent51e3fabf1032a55a3e50dcb6afe2552f6a777877 (diff)
downloadphp-git-php-5.5.0beta4.tar.gz
PHP 5.5.0 Beta 4php-5.5.0beta4
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index f531bebdd1..30140d5d96 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=5
PHP_RELEASE_VERSION=0
-PHP_EXTRA_VERSION="-dev"
+PHP_EXTRA_VERSION="beta4"
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 1995834e03..944a8998c1 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 5
#define PHP_RELEASE_VERSION 0
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.5.0-dev"
+#define PHP_EXTRA_VERSION "beta4"
+#define PHP_VERSION "5.5.0beta4"
#define PHP_VERSION_ID 50500