From c1f736a473d21957ead7e94fcc029f571895abf5 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Fri, 5 Apr 2024 06:39:01 +0200 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 1d8412e2246..2d0b304b1bf 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.17] - 2024-04-05 + +### Changed + +* The namespaces of dependencies are now prefixed with `PHPUnitPHAR` instead of just `PHPUnit` for the PHAR distribution of PHPUnit + ## [10.5.16] - 2024-03-28 ### Changed @@ -177,6 +183,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.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 [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 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 0429873f46c..00fd54c3713 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.16', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('10.5.17', dirname(__DIR__, 2)))->asString(); } return self::$version;