From 8475044fbb0af57c8daea06bcfe21e2785401f97 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 19 Jun 2024 07:31:11 +0200 Subject: [PATCH] Prepare release --- ChangeLog-11.2.md | 4 ++-- src/Runner/Version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog-11.2.md b/ChangeLog-11.2.md index d67f3d837e5..5856338a89f 100644 --- a/ChangeLog-11.2.md +++ b/ChangeLog-11.2.md @@ -2,7 +2,7 @@ All notable changes of the PHPUnit 11.2 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. -## [11.2.3] - 2024-MM-DD +## [11.2.3] - 2024-06-19 ### Changed @@ -37,7 +37,7 @@ All notable changes of the PHPUnit 11.2 release series are documented in this fi * [#5800](https://github.com/sebastianbergmann/phpunit/issues/5800): Support for targeting traits with `#[CoversClass]` and `#[UsesClass]` attributes -[11.2.3]: https://github.com/sebastianbergmann/phpunit/compare/11.2.2...11.2 +[11.2.3]: https://github.com/sebastianbergmann/phpunit/compare/11.2.2...11.2.3 [11.2.2]: https://github.com/sebastianbergmann/phpunit/compare/11.2.1...11.2.2 [11.2.1]: https://github.com/sebastianbergmann/phpunit/compare/11.2.0...11.2.1 [11.2.0]: https://github.com/sebastianbergmann/phpunit/compare/11.1.3...11.2.0 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index d264fb03fe5..7b488adc669 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.2.2', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('11.2.3', dirname(__DIR__, 2)))->asString(); } return self::$version;