summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2018-05-23 20:13:32 +0200
committerJoe Watkins <krakjoe@php.net>2018-05-23 20:13:32 +0200
commitd326dec329f861d1c2aa28684fc30056a2a71410 (patch)
treeed4200616538169fa25d5a1044f6ba638ae8bf5d
parentf51ddd70aea5873338a5e083a7f3a852ac3ec255 (diff)
downloadphp-git-PHP-7.1.18.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 1cd5fc8a80..d64f2e4f61 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=18
-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 e4432c29c7..6901954674 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 18
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "7.1.18RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.1.18"
#define PHP_VERSION_ID 70118