From 9fa359ff5ddaa5eb2be2bedb08a6a5787a5807ab Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Tue, 10 Nov 2020 13:53:30 +0100 Subject: [PATCH] Prepare release --- ChangeLog-9.4.md | 4 ++-- src/Runner/Version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog-9.4.md b/ChangeLog-9.4.md index 565c99f1ee5..7535a22a180 100644 --- a/ChangeLog-9.4.md +++ b/ChangeLog-9.4.md @@ -2,7 +2,7 @@ All notable changes of the PHPUnit 9.4 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. -## [9.4.3] - 2020-MM-DD +## [9.4.3] - 2020-11-10 ### Fixed @@ -38,7 +38,7 @@ All notable changes of the PHPUnit 9.4 release series are documented in this fil * The PHPUnit XML configuration generator (that is invoked using the `--generate-configuration` CLI option) now asks for a cache directory (default: `.phpunit.cache`) -[9.4.3]: https://github.com/sebastianbergmann/phpunit/compare/9.4.2...9.4 +[9.4.3]: https://github.com/sebastianbergmann/phpunit/compare/9.4.2...9.4.3 [9.4.2]: https://github.com/sebastianbergmann/phpunit/compare/9.4.1...9.4.2 [9.4.1]: https://github.com/sebastianbergmann/phpunit/compare/9.4.0...9.4.1 [9.4.0]: https://github.com/sebastianbergmann/phpunit/compare/9.3.11...9.4.0 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 17fac775ba0..49efbe237ba 100644 --- a/src/Runner/Version.php +++ b/src/Runner/Version.php @@ -41,7 +41,7 @@ public static function id(): string } if (self::$version === '') { - self::$version = (new VersionId('9.4.2', dirname(__DIR__, 2)))->getVersion(); + self::$version = (new VersionId('9.4.3', dirname(__DIR__, 2)))->getVersion(); } return self::$version;