From 1b8775732e9c401bda32df3ffbdf90dec7533ceb Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Tue, 11 Jun 2024 09:30:35 +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 91fb5cff8e2..91517699755 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.1] - 2024-MM-DD +## [11.2.1] - 2024-06-11 ### Fixed @@ -21,5 +21,5 @@ 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.1]: https://github.com/sebastianbergmann/phpunit/compare/11.2.0...11.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 3386868a683..436629083f6 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.0', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('11.2.1', dirname(__DIR__, 2)))->asString(); } return self::$version;