summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-12-14 08:34:42 +0100
committerAnatol Belski <ab@php.net>2015-12-14 08:34:42 +0100
commitfd7a9a2876e8f7ad0e39b345712de89645ece2a7 (patch)
tree494ac57f6977be12fe49f85b742caaf1a81d69b5
parent2fe4603f7a969aa72d1d08eeb82ae8ae0f94501c (diff)
downloadphp-git-fd7a9a2876e8f7ad0e39b345712de89645ece2a7.tar.gz
set final version
-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 4c154a1aeb..b7f1c96e29 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=7
PHP_MINOR_VERSION=0
PHP_RELEASE_VERSION=1
-PHP_EXTRA_VERSION="RC1"
+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 22d83ea3bf..f5de094422 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 0
#define PHP_RELEASE_VERSION 1
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "7.0.1RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.0.1"
#define PHP_VERSION_ID 70001