summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2017-05-09 13:26:19 +0100
committerJoe Watkins <krakjoe@php.net>2017-05-09 13:27:36 +0100
commit5d08c710749096291e294afd641e4429760c6c6e (patch)
treef3147a4f09af2341538ca0647773e6235c3d82f1
parentee9650c3d2b0ccc9bdeec3de33ad1950b8362005 (diff)
downloadphp-git-PHP-7.1.5.tar.gz
set versionsphp-7.1.5PHP-7.1.5
-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 0e82e03744..1d19f0f5e8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-27 Apr 2017, PHP 7.1.5RC1
+11 May 2017, PHP 7.1.5
- Core:
. Fixed bug #74408 (Endless loop bypassing execution time limit). (Laruence)
diff --git a/configure.in b/configure.in
index 078378325a..58e5310196 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=5
-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 2ff9e16f3a..da9b1e2135 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 5
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "7.1.5RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.1.5"
#define PHP_VERSION_ID 70105