Skip to content

Commit 43f3745

Browse files
committed
Bump version
Apparently, this has been forgotten when PHP 8.0.17RC1 and 8.0.18RC1 had been tagged. We also fix the version of the fix for GH-8253, which didn't make it into PHP 8.0.18RC1.
1 parent c489e36 commit 43f3745

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

NEWS

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
?? ??? 2022, PHP 8.0.18
3+
?? ??? 2022, PHP 8.0.19
4+
5+
- Core:
6+
7+
. Fixed bug GH-8289 (Exceptions thrown within a yielded from iterator are
8+
not rethrown into the generator). (Bob)
9+
10+
14 Apr 2022, PHP 8.0.18
411

512
- Core:
613
. Fixed freeing of internal attribute arguments. (Bob)
714
. Fixed bug GH-8070 (memory leak of internal function attribute hash).
815
(Tim Düsterhus)
916
. Fixed bug GH-8160 (ZTS support on Alpine is broken). (Michael Voříšek)
10-
. Fixed bug GH-8289 (Exceptions thrown within a yielded from iterator are
11-
not rethrown into the generator). (Bob)
1217

1318
- Filter:
1419
. Fixed signedness confusion in php_filter_validate_domain(). (cmb)

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 "4.0.17-dev"
23+
#define ZEND_VERSION "4.0.19-dev"
2424

2525
#define ZEND_ENGINE_3
2626

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dnl Basic autoconf initialization, generation of config.nice.
1717
dnl ----------------------------------------------------------------------------
1818

1919
AC_PREREQ([2.68])
20-
AC_INIT([PHP],[8.0.17-dev],[https://bugs.php.net],[php],[https://www.php.net])
20+
AC_INIT([PHP],[8.0.19-dev],[https://bugs.php.net],[php],[https://www.php.net])
2121
AC_CONFIG_SRCDIR([main/php_version.h])
2222
AC_CONFIG_AUX_DIR([build])
2323
AC_PRESERVE_HELP_ORDER

main/php_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* edit configure.ac to change version number */
33
#define PHP_MAJOR_VERSION 8
44
#define PHP_MINOR_VERSION 0
5-
#define PHP_RELEASE_VERSION 17
5+
#define PHP_RELEASE_VERSION 19
66
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "8.0.17-dev"
8-
#define PHP_VERSION_ID 80017
7+
#define PHP_VERSION "8.0.19-dev"
8+
#define PHP_VERSION_ID 80019

0 commit comments

Comments
 (0)