summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-09-13 10:35:01 +0200
committerAnatol Belski <ab@php.net>2016-09-13 10:35:01 +0200
commit66c42fcf49ef4d38c916439e60e8d71ea39c8969 (patch)
tree4718c812cb7d1483014e32761772fa871b7b3259
parent9ae680b06587184b69d9ee47a9a754a33cc7a86e (diff)
downloadphp-git-66c42fcf49ef4d38c916439e60e8d71ea39c8969.tar.gz
set versions
-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 b743815929..def30aeeb3 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=11
-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 dff990323d..a7ed5b01ec 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 11
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "7.0.11RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.0.11"
#define PHP_VERSION_ID 70011