summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2017-07-04 20:10:59 +0100
committerJoe Watkins <krakjoe@php.net>2017-07-04 20:10:59 +0100
commitef9d35cdc991e28d5ef69ef8993cf33b9afa3f24 (patch)
tree93d6d0ac0354680fac6a6e2587f463b116d9ea5f
parent2c567eae283308bbc1cb9836546b8dbf0146932c (diff)
downloadphp-git-ef9d35cdc991e28d5ef69ef8993cf33b9afa3f24.tar.gz
set versions
-rw-r--r--NEWS4
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 6 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 10f395f790..34438c93b5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-22 Jun 2017, PHP 7.1.7RC1
+06 Jul 2017, PHP 7.1.7
- Core:
. Fixed bug #74738 (Multiple [PATH=] and [HOST=] sections not properly
@@ -8,6 +8,8 @@ PHP NEWS
. Fixed bug #74658 (Undefined constants in array properties result in broken
properties). (Laruence)
. Fixed misparsing of abstract unix domain socket names. (Sara)
+ . Fixed bug #74101, bug #74614 (Unserialize Heap Use-After-Free (READ: 1) in
+ zval_get_type). (Nikita)
- Date:
. Fixed bug #74639 (implement clone for DatePeriod and DateInterval).
diff --git a/configure.in b/configure.in
index ccc9d63365..19a1d1df57 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=7
-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 08d2b76dc1..3fabbc249c 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 7
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "7.1.7RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.1.7"
#define PHP_VERSION_ID 70107