summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2017-06-06 11:35:34 +0200
committerAnatol Belski <ab@php.net>2017-06-06 11:35:34 +0200
commite17e2b26b33f0294cffe0e98c6b3a74ba4d48cb4 (patch)
treefcc2e2f1ff546e8a7f12c939e91f427d6783fb5d
parentfbe2490ce049b8186c93bb4bc38b4384d44236be (diff)
downloadphp-git-PHP-7.0.20.tar.gz
-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 8921440587..c8dd3da37b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-25 May 2017 PHP 7.0.20RC1
+8 Jun 2017 PHP 7.0.20
- Core:
. Fixed bug #74600 (crash (SIGSEGV) in _zend_hash_add_or_update_i).
diff --git a/configure.in b/configure.in
index 0ddb82aff3..9cec5adcd9 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=0
PHP_RELEASE_VERSION=20
-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 eb6c6372da..171aeb87d0 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 0
#define PHP_RELEASE_VERSION 20
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "7.0.20RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.0.20"
#define PHP_VERSION_ID 70020