summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2017-06-07 09:05:10 +0100
committerJoe Watkins <krakjoe@php.net>2017-06-07 09:05:10 +0100
commit5b34dc2d52841bfab425cbb24e9111172de20ef9 (patch)
tree32aa036edb8950f500830ff1918f90147b21c624
parent01990286f6ef2c0694e36e8ee8551a3794a0e1c2 (diff)
downloadphp-git-PHP-7.1.6.tar.gz
set versionsphp-7.1.6PHP-7.1.6
-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 a2010f7907..b0cd0821c3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-25 May 2017, PHP 7.1.6RC1
+7 Jun 2017, PHP 7.1.6
- Core:
. Fixed bug #74600 (crash (SIGSEGV) in _zend_hash_add_or_update_i).
diff --git a/configure.in b/configure.in
index ba7c5fc351..52c26cf0f8 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=6
-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 7f7d520acc..0cd926e05b 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 6
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "7.1.6RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.1.6"
#define PHP_VERSION_ID 70106