From c726f0de022368f6ed103e452a765d3304a996a4 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 17 Apr 2024 16:06:18 +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 9efb2fa05d..b7cb6ac99a 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.19] - 2024-MM-DD +## [10.5.19] - 2024-04-17 ### Fixed @@ -199,7 +199,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.19]: https://github.com/sebastianbergmann/phpunit/compare/10.5.18...10.5 +[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 [10.5.16]: https://github.com/sebastianbergmann/phpunit/compare/10.5.15...10.5.16 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index fd9a34500d..ac4d596d00 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.18', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('10.5.19', dirname(__DIR__, 2)))->asString(); } return self::$version;