From c197bbaaca360efda351369bf1fd9cc1ca6bcbf7 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Tue, 30 Jul 2024 13:09:23 +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 7f4a93b99c7..8adbec6cb3b 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.9] - 2024-MM-DD +## [11.2.9] - 2024-07-30 ### Fixed @@ -79,7 +79,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.9]: https://github.com/sebastianbergmann/phpunit/compare/11.2.8...11.2 +[11.2.9]: https://github.com/sebastianbergmann/phpunit/compare/11.2.8...11.2.9 [11.2.8]: https://github.com/sebastianbergmann/phpunit/compare/11.2.7...11.2.8 [11.2.7]: https://github.com/sebastianbergmann/phpunit/compare/11.2.6...11.2.7 [11.2.6]: https://github.com/sebastianbergmann/phpunit/compare/11.2.5...11.2.6 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index c67a5caf44c..2e9763e4a74 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.8', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('11.2.9', dirname(__DIR__, 2)))->asString(); } return self::$version;