From 15c7e69dec4a8f246840859e6b430bd2abeb5039 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 10 Jul 2024 13:50:09 +0200 Subject: [PATCH] Prepare release --- ChangeLog-11.2.md | 8 ++++++-- src/Runner/Version.php | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog-11.2.md b/ChangeLog-11.2.md index 3ce8716e138..0d2f610d729 100644 --- a/ChangeLog-11.2.md +++ b/ChangeLog-11.2.md @@ -2,7 +2,11 @@ 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.7] - 2024-MM-DD +## [11.2.7] - 2024-07-10 + +### Changed + +* Updated dependencies (so that users that install using Composer's `--prefer-lowest` CLI option also get recent versions) ### Fixed @@ -61,7 +65,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.7]: https://github.com/sebastianbergmann/phpunit/compare/11.2.6...11.2 +[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 [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 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index f29e3053614..8d2e11f560c 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.6', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('11.2.7', dirname(__DIR__, 2)))->asString(); } return self::$version;