summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe <krakjoe@php.net>2018-02-13 20:21:00 +0100
committerJoe <krakjoe@php.net>2018-02-13 20:21:00 +0100
commit876a7097e6b9bc03c88637408dd90a8e5da41a01 (patch)
tree4fc740cea92da3ed0aa956aeb0a4b6cc6d62aded
parent070211b3e3b2fc20247e761e3bf2a81b50b6e007 (diff)
downloadphp-git-876a7097e6b9bc03c88637408dd90a8e5da41a01.tar.gz
set versionsphp-7.1.15RC1
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 0235d36d52..29632002fb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2018, PHP 7.1.15
+15 Feb 2018, PHP 7.1.15RC1
- Apache2Handler:
. Fixed bug #75882 (a simple way for segfaults in threadsafe php just with
diff --git a/configure.in b/configure.in
index 23188b021d..fe95a1ef4d 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=15
-PHP_EXTRA_VERSION="-dev"
+PHP_EXTRA_VERSION="RC1"
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 ed07de307b..e3120da7ae 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 15
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.1.15-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "7.1.15RC1"
#define PHP_VERSION_ID 70115