Skip to content

Commit 813279f

Browse files
committed
Prepare PHP 7.3.7
1 parent d428155 commit 813279f

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

NEWS

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
20 Jun 2019, PHP 7.3.7RC3
4-
5-
- Opcache:
6-
. Fixed bug #78106 (Path resolution fails if opcache disabled during request).
7-
(Nikita)
8-
. Fixed bug #78185 (File cache no longer works). (Dmitry)
9-
10-
13 Jun 2019, PHP 7.3.7RC1
3+
04 Jul 2019, PHP 7.3.7
114

125
- Core:
136
. Fixed bug #76980 (Interface gets skipped if autoloader throws an exception).
@@ -30,6 +23,8 @@ PHP NEWS
3023
- Opcache:
3124
. Fixed bug #78015 (Incorrect evaluation of expressions involving partials
3225
arrays in SCCP). (Nikita)
26+
. Fixed bug #78106 (Path resolution fails if opcache disabled during request).
27+
(Nikita)
3328

3429
- OpenSSL:
3530
. Fixed bug #78079 (openssl_encrypt_ccm.phpt fails with OpenSSL 1.1.1c).

Zend/zend.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#ifndef ZEND_H
2121
#define ZEND_H
2222

23-
#define ZEND_VERSION "3.3.7RC3"
23+
#define ZEND_VERSION "3.3.7"
2424

2525
#define ZEND_ENGINE_3
2626

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
108108
PHP_MAJOR_VERSION=7
109109
PHP_MINOR_VERSION=3
110110
PHP_RELEASE_VERSION=7
111-
PHP_EXTRA_VERSION="RC3"
111+
PHP_EXTRA_VERSION=""
112112
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
113113
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
114114

main/php_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#define PHP_MAJOR_VERSION 7
44
#define PHP_MINOR_VERSION 3
55
#define PHP_RELEASE_VERSION 7
6-
#define PHP_EXTRA_VERSION "RC3"
7-
#define PHP_VERSION "7.3.7RC3"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "7.3.7"
88
#define PHP_VERSION_ID 70307

0 commit comments

Comments
 (0)