summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2019-07-02 11:05:25 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2019-07-02 11:05:25 +0200
commit813279f4b4154d18eb9b6038b19decb27349e680 (patch)
tree52127abe21b4f5e26d936e7a864ec8c29a218da6
parentd428155055a86e24616ff2daf46f22842b043360 (diff)
downloadphp-git-813279f4b4154d18eb9b6038b19decb27349e680.tar.gz
Prepare PHP 7.3.7
-rw-r--r--NEWS11
-rw-r--r--Zend/zend.h2
-rw-r--r--configure.ac2
-rw-r--r--main/php_version.h4
4 files changed, 7 insertions, 12 deletions
diff --git a/NEWS b/NEWS
index 89c5d232aa..6e913df568 100644
--- a/NEWS
+++ b/NEWS
@@ -1,13 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-20 Jun 2019, PHP 7.3.7RC3
-
-- Opcache:
- . Fixed bug #78106 (Path resolution fails if opcache disabled during request).
- (Nikita)
- . Fixed bug #78185 (File cache no longer works). (Dmitry)
-
-13 Jun 2019, PHP 7.3.7RC1
+04 Jul 2019, PHP 7.3.7
- Core:
. Fixed bug #76980 (Interface gets skipped if autoloader throws an exception).
@@ -30,6 +23,8 @@ PHP NEWS
- Opcache:
. Fixed bug #78015 (Incorrect evaluation of expressions involving partials
arrays in SCCP). (Nikita)
+ . Fixed bug #78106 (Path resolution fails if opcache disabled during request).
+ (Nikita)
- OpenSSL:
. Fixed bug #78079 (openssl_encrypt_ccm.phpt fails with OpenSSL 1.1.1c).
diff --git a/Zend/zend.h b/Zend/zend.h
index a1d84dcc5f..335377f970 100644
--- a/Zend/zend.h
+++ b/Zend/zend.h
@@ -20,7 +20,7 @@
#ifndef ZEND_H
#define ZEND_H
-#define ZEND_VERSION "3.3.7RC3"
+#define ZEND_VERSION "3.3.7"
#define ZEND_ENGINE_3
diff --git a/configure.ac b/configure.ac
index 0a68bc8ce7..86ca2b9ecc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -108,7 +108,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=7
PHP_MINOR_VERSION=3
PHP_RELEASE_VERSION=7
-PHP_EXTRA_VERSION="RC3"
+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 2ff950c357..1438b3cff1 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 3
#define PHP_RELEASE_VERSION 7
-#define PHP_EXTRA_VERSION "RC3"
-#define PHP_VERSION "7.3.7RC3"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.3.7"
#define PHP_VERSION_ID 70307