summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2018-08-14 19:17:26 +0200
committerJoe Watkins <krakjoe@php.net>2018-08-14 19:17:26 +0200
commitc34edd42606aac6d421c7d8e43d16875de37c515 (patch)
tree18264f248f4bac6f85c7b30b062b7ec04068e6e8
parent6acee09f40fd16320ccadc0f662033ddff75d053 (diff)
downloadphp-git-PHP-7.1.21.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 dc4cd1368f..d6d9b695ca 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=1
PHP_RELEASE_VERSION=21
-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 7587c42b60..97ceebcc44 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 1
#define PHP_RELEASE_VERSION 21
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "7.1.21RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.1.21"
#define PHP_VERSION_ID 70121