From 86376e05e8745ed81d88232ff92fee868247b07b Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Fri, 22 Mar 2024 05:17:47 +0100 Subject: [PATCH] Prepare release --- ChangeLog-10.5.md | 7 +++++++ src/Runner/Version.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog-10.5.md b/ChangeLog-10.5.md index 1084f396bb9..3679143c12e 100644 --- a/ChangeLog-10.5.md +++ b/ChangeLog-10.5.md @@ -2,6 +2,12 @@ All notable changes of the PHPUnit 10.5 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. +## [10.5.15] - 2024-03-22 + +### Fixed + +* [#5765](https://github.com/sebastianbergmann/phpunit/pull/5765): Be more forgiving with error handlers that do not respect error suppression + ## [10.5.14] - 2024-03-21 ### Changed @@ -160,6 +166,7 @@ All notable changes of the PHPUnit 10.5 release series are documented in this fi * [#5563](https://github.com/sebastianbergmann/phpunit/issues/5563): `createMockForIntersectionOfInterfaces()` does not automatically register mock object for expectation verification +[10.5.15]: https://github.com/sebastianbergmann/phpunit/compare/10.5.14...10.5.15 [10.5.14]: https://github.com/sebastianbergmann/phpunit/compare/10.5.13...10.5.14 [10.5.13]: https://github.com/sebastianbergmann/phpunit/compare/10.5.12...10.5.13 [10.5.12]: https://github.com/sebastianbergmann/phpunit/compare/10.5.11...10.5.12 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index d53ee200d59..07d9a6ce0ba 100644 --- a/src/Runner/Version.php +++ b/src/Runner/Version.php @@ -34,7 +34,7 @@ public static function id(): string } if (self::$version === '') { - self::$version = (new VersionId('10.5.14', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('10.5.15', dirname(__DIR__, 2)))->asString(); } return self::$version;