From be9e3ed32a1287a9bfda15936cc86fef4e4cf591 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Thu, 20 Jun 2024 15:11:31 +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 12dced1e196..1bd7bd8211c 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.5] - 2024-MM-DD +## [11.2.5] - 2024-06-20 ### Changed @@ -49,7 +49,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.5]: https://github.com/sebastianbergmann/phpunit/compare/11.2.4...11.2 +[11.2.5]: https://github.com/sebastianbergmann/phpunit/compare/11.2.4...11.2.5 [11.2.4]: https://github.com/sebastianbergmann/phpunit/compare/11.2.3...11.2.4 [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 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index efb72a869a9..2d52bf05d2b 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.4', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('11.2.5', dirname(__DIR__, 2)))->asString(); } return self::$version;