From ed21115d505b4b4f7dc7b5651464e19a2c7f7856 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 27 Dec 2023 16:13:52 +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 3460f438f28..af8e707128d 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.5] - 2023-12-27 + +### Fixed + +* [#5619](https://github.com/sebastianbergmann/phpunit/pull/5619): Reverted change introduced in PHPUnit 10.5.4 that broke backward compatibility + ## [10.5.4] - 2023-12-27 ### Fixed @@ -56,6 +62,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.5]: https://github.com/sebastianbergmann/phpunit/compare/10.5.4...10.5.5 [10.5.4]: https://github.com/sebastianbergmann/phpunit/compare/10.5.3...10.5.4 [10.5.3]: https://github.com/sebastianbergmann/phpunit/compare/10.5.2...10.5.3 [10.5.2]: https://github.com/sebastianbergmann/phpunit/compare/10.5.1...10.5.2 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index ebb009120eb..bcabd74a2b2 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.4', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('10.5.5', dirname(__DIR__, 2)))->asString(); } return self::$version;