summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2015-09-01 13:09:37 -0700
committerStanislav Malyshev <stas@php.net>2015-09-01 13:09:37 -0700
commit24324791c23de1d66d1ff7787b472db30d1af228 (patch)
tree58b66644f70d255503c45e35ec00d6c9ef3e541b
parent1922c650bac7ca4aed9c530faddb96cff73a0abc (diff)
downloadphp-git-24324791c23de1d66d1ff7787b472db30d1af228.tar.gz
-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 2c12f5471d..8a5ecac854 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=4
PHP_RELEASE_VERSION=45
-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 49c00afc70..22db4793d7 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 4
#define PHP_RELEASE_VERSION 45
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.4.45-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.4.45"
#define PHP_VERSION_ID 50445