From 7ab77541911050da9cb08a1d386c55829fd8c2f4 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Mon, 9 Sep 2024 08:06:31 +0200 Subject: [PATCH 1/2] Fix --- ChangeLog-10.5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog-10.5.md b/ChangeLog-10.5.md index 834a63e3a7f..03a22bd36a3 100644 --- a/ChangeLog-10.5.md +++ b/ChangeLog-10.5.md @@ -6,7 +6,7 @@ All notable changes of the PHPUnit 10.5 release series are documented in this fi ### Fixed -* [#4584](https://github.com/sebastianbergmann/phpunit/issues/4584): `assertJsonStringEqualsJsonString()` considers objects with sequential numeric keys equal to arrays +* [#4584](https://github.com/sebastianbergmann/phpunit/issues/4584): `assertJsonStringEqualsJsonString()` considers objects with sequential numeric keys equal to be arrays * [#4625](https://github.com/sebastianbergmann/phpunit/issues/4625): Generator yielding keys that are neither integer or string leads to hard-to-understand error message when used as data provider * [#4674](https://github.com/sebastianbergmann/phpunit/issues/4674): JSON assertions should treat objects as unordered * [#5891](https://github.com/sebastianbergmann/phpunit/issues/5891): `Callback` constraint does not handle variadic arguments correctly when used for mock object expectations From 4def7a9cda75af9c2bc179ed53a8e41313e7f7cf Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Mon, 9 Sep 2024 08:06:56 +0200 Subject: [PATCH 2/2] 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 03a22bd36a3..36fc618b368 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.33] - 2024-MM-DD +## [10.5.33] - 2024-09-09 ### Fixed @@ -304,7 +304,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.33]: https://github.com/sebastianbergmann/phpunit/compare/10.5.32...10.5 +[10.5.33]: https://github.com/sebastianbergmann/phpunit/compare/10.5.32...10.5.33 [10.5.32]: https://github.com/sebastianbergmann/phpunit/compare/10.5.31...10.5.32 [10.5.31]: https://github.com/sebastianbergmann/phpunit/compare/10.5.30...10.5.31 [10.5.30]: https://github.com/sebastianbergmann/phpunit/compare/10.5.29...10.5.30 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 2f34965dc0b..0a56c26c76f 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.32', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('10.5.33', dirname(__DIR__, 2)))->asString(); } return self::$version;