From ff7fb85cdf88131b83e721fb2a327b664dbed275 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Thu, 18 Jul 2024 16:54:16 +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 3fa3f4b939..0cd8e2ae7e 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.28] - 2024-MM-DD +## [10.5.28] - 2024-07-18 ### Fixed @@ -258,7 +258,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.28]: https://github.com/sebastianbergmann/phpunit/compare/10.5.27...10.5 +[10.5.28]: https://github.com/sebastianbergmann/phpunit/compare/10.5.27...10.5.28 [10.5.27]: https://github.com/sebastianbergmann/phpunit/compare/10.5.26...10.5.27 [10.5.26]: https://github.com/sebastianbergmann/phpunit/compare/10.5.25...10.5.26 [10.5.25]: https://github.com/sebastianbergmann/phpunit/compare/10.5.24...10.5.25 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 7e2d0852c4..ea297f2342 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.27', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('10.5.28', dirname(__DIR__, 2)))->asString(); } return self::$version;