From 547d314dc24ec1e177720d45c6263fb226cc2ae3 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 24 Apr 2024 08:32:35 +0200 Subject: [PATCH] Prepare release --- ChangeLog-10.5.md | 4 ++-- src/Runner/Version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog-10.5.md b/ChangeLog-10.5.md index f5a0f31677..16e4fd3a98 100644 --- a/ChangeLog-10.5.md +++ b/ChangeLog-10.5.md @@ -2,7 +2,7 @@ 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.20] - 2024-MM-DD +## [10.5.20] - 2024-04-24 * [#5771](https://github.com/sebastianbergmann/phpunit/issues/5771): JUnit XML logger may crash when test that is run in separate process exits unexpectedly * [#5819](https://github.com/sebastianbergmann/phpunit/issues/5819): Duplicate keys from different data providers are not handled properly @@ -204,7 +204,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.20]: https://github.com/sebastianbergmann/phpunit/compare/10.5.19...10.5 +[10.5.20]: https://github.com/sebastianbergmann/phpunit/compare/10.5.19...10.5.20 [10.5.19]: https://github.com/sebastianbergmann/phpunit/compare/10.5.18...10.5.19 [10.5.18]: https://github.com/sebastianbergmann/phpunit/compare/10.5.17...10.5.18 [10.5.17]: https://github.com/sebastianbergmann/phpunit/compare/10.5.16...10.5.17 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index ac4d596d00..38b6dea393 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.19', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('10.5.20', dirname(__DIR__, 2)))->asString(); } return self::$version;