From fe179875ef0c14e90b75617002767eae0a742641 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Tue, 13 Aug 2024 08:14:23 +0200 Subject: [PATCH] Prepare release --- ChangeLog-11.3.md | 7 +++++++ src/Runner/Version.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog-11.3.md b/ChangeLog-11.3.md index 45eff8c364..2063a07ac6 100644 --- a/ChangeLog-11.3.md +++ b/ChangeLog-11.3.md @@ -2,6 +2,12 @@ All notable changes of the PHPUnit 11.3 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. +## [11.3.1] - 2024-08-13 + +### Changed + +* Improved how objects are handled for some assertion failure messages + ## [11.3.0] - 2024-08-09 ### Added @@ -16,4 +22,5 @@ All notable changes of the PHPUnit 11.3 release series are documented in this fi * [#5856](https://github.com/sebastianbergmann/phpunit/issues/5856): When the test runner is configured to fail on deprecations, notices, warnings, incomplete tests, or skipped tests then details for tests that triggered deprecations, notices, or warnings as well as tests that were marked as incomplete or skipped are always shown, respectively * [#5869](https://github.com/sebastianbergmann/phpunit/pull/5869): The configuration file generated using `--generate-configuration` now limits the export of arrays to 10 elements in order to improve performance +[11.3.1]: https://github.com/sebastianbergmann/phpunit/compare/11.3.0...11.3.1 [11.3.0]: https://github.com/sebastianbergmann/phpunit/compare/11.2.9...11.3.0 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 9266b5e65e..86592c673d 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('11.3.0', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('11.3.1', dirname(__DIR__, 2)))->asString(); } return self::$version;