summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Soria Parra <dsp@php.net>2013-08-15 22:42:04 +0200
committerDavid Soria Parra <dsp@php.net>2013-08-15 22:42:04 +0200
commit29b4532f618973b80b6b7017b44139995dce697c (patch)
tree607efc6cfce8e307170685f2bdfa9e8ccdd98e6b
parentf12f3abe8e529a1ddfcbcc857f95986b591bce9f (diff)
downloadphp-git-29b4532f618973b80b6b7017b44139995dce697c.tar.gz
PHP 5.5.2php-5.5.2
-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 19c96d4151..41c27847a4 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=2
-PHP_EXTRA_VERSION="-dev"
+PHP_EXTRA_VERSION=""
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 e760d29346..f1f201e9e2 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 2
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.5.2-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.5.2"
#define PHP_VERSION_ID 50502