diff --git a/ChangeLog-9.2.md b/ChangeLog-9.2.md index df97630f4db..918ab5b86c1 100644 --- a/ChangeLog-9.2.md +++ b/ChangeLog-9.2.md @@ -2,7 +2,7 @@ All notable changes of the PHPUnit 9.2 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. -## [9.2.6] - 2020-MM-DD +## [9.2.6] - 2020-07-13 ### Fixed @@ -56,7 +56,7 @@ All notable changes of the PHPUnit 9.2 release series are documented in this fil * [#4258](https://github.com/sebastianbergmann/phpunit/pull/4258): Prevent unpredictable result by raising an exception when multiple matchers can be applied to a test double invocation * The test runner no longer relies on `$_SERVER['REQUEST_TIME_FLOAT']` for printing the elapsed time -[9.2.6]: https://github.com/sebastianbergmann/phpunit/compare/9.2.5...9.2 +[9.2.6]: https://github.com/sebastianbergmann/phpunit/compare/9.2.5...9.2.6 [9.2.5]: https://github.com/sebastianbergmann/phpunit/compare/9.2.4...9.2.5 [9.2.4]: https://github.com/sebastianbergmann/phpunit/compare/9.2.3...9.2.4 [9.2.3]: https://github.com/sebastianbergmann/phpunit/compare/9.2.2...9.2.3 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index af6aea27a0f..6e1afe3dc35 100644 --- a/src/Runner/Version.php +++ b/src/Runner/Version.php @@ -33,7 +33,7 @@ public static function id(): string } if (self::$version === '') { - self::$version = (new VersionId('9.2.5', \dirname(__DIR__, 2)))->getVersion(); + self::$version = (new VersionId('9.2.6', \dirname(__DIR__, 2)))->getVersion(); } return self::$version;