Skip to content

Commit 47a2da6

Browse files
committed
Bump version
1 parent cb265a0 commit 47a2da6

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

NEWS

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
?? ??? ????, PHP 7.3.18
4-
5-
- SimpleXML:
6-
. Fixed bug #79528 (Different object of the same xml between 7.4.5 and
7-
7.4.4). (cmb)
8-
9-
30 Apr 2020, PHP 7.3.18RC1
3+
14 May 2020, PHP 7.3.18
104

115
- Core:
126
. Fixed bug #79434 (PHP 7.3 and PHP-7.4 crash with NULL-pointer dereference
@@ -35,6 +29,10 @@ PHP NEWS
3529
- Phar:
3630
. Fix bug #79503 (Memory leak on duplicate metadata). (cmb)
3731

32+
- SimpleXML:
33+
. Fixed bug #79528 (Different object of the same xml between 7.4.5 and
34+
7.4.4). (cmb)
35+
3836
- Standard:
3937
. Fixed bug #79468 (SIGSEGV when closing stream handle with a stream filter
4038
appended). (dinosaur)

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.18RC1"
23+
#define ZEND_VERSION "3.3.18"
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=18
111-
PHP_EXTRA_VERSION="RC1"
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 18
6-
#define PHP_EXTRA_VERSION "RC1"
7-
#define PHP_VERSION "7.3.18RC1"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "7.3.18"
88
#define PHP_VERSION_ID 70318

0 commit comments

Comments
 (0)