diff --git a/ChangeLog-11.2.md b/ChangeLog-11.2.md index 8a8f292cef..146c10d3ff 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.8] - 2024-MM-DD +## [11.2.8] - 2024-07-18 ### Fixed @@ -72,7 +72,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.8]: https://github.com/sebastianbergmann/phpunit/compare/11.2.7...11.2 +[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 [11.2.5]: https://github.com/sebastianbergmann/phpunit/compare/11.2.4...11.2.5 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 8d2e11f560..c67a5caf44 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.7', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('11.2.8', dirname(__DIR__, 2)))->asString(); } return self::$version;