From 3b50c1ad9dd021062c76f678f59fa38b6bd09b15 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Fri, 5 Jun 2020 08:43:37 +0200 Subject: [PATCH] Prepare release --- ChangeLog-9.2.md | 4 ++-- src/Runner/Version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog-9.2.md b/ChangeLog-9.2.md index 816b73ccd23..39d7f3d013a 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.1] - 2020-MM-DD +## [9.2.1] - 2020-06-05 ### Fixed @@ -20,5 +20,5 @@ 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.1]: https://github.com/sebastianbergmann/phpunit/compare/9.2.0...9.2 +[9.2.1]: https://github.com/sebastianbergmann/phpunit/compare/9.2.0...9.2.1 [9.2.0]: https://github.com/sebastianbergmann/phpunit/compare/9.1.5...9.2.0 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 77b1551f2ee..7697b8b0efc 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.0', \dirname(__DIR__, 2)))->getVersion(); + self::$version = (new VersionId('9.2.1', \dirname(__DIR__, 2)))->getVersion(); } return self::$version;