From ae6345e27d4d7a7ba5f4cf8d80516c2f46e41cad Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Fri, 6 Dec 2019 06:24:19 +0100 Subject: [PATCH] Prepare release --- ChangeLog-8.5.md | 2 +- src/Runner/Version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog-8.5.md b/ChangeLog-8.5.md index 89c1f3f3485..caeefb74321 100644 --- a/ChangeLog-8.5.md +++ b/ChangeLog-8.5.md @@ -21,4 +21,4 @@ All notable changes of the PHPUnit 8.5 release series are documented in this fil * Fixed [#3967](https://github.com/sebastianbergmann/phpunit/issues/3967): Cannot double interface that extends interface that extends `\Throwable` * Fixed [#3968](https://github.com/sebastianbergmann/phpunit/pull/3968): Test class run in a separate PHP process are passing when `exit` called inside -[8.5.0]: https://github.com/sebastianbergmann/phpunit/compare/8.4.3...8.5 +[8.5.0]: https://github.com/sebastianbergmann/phpunit/compare/8.4.3...8.5.0 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 8fdfe574f1a..b6f7720b88f 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('8.5', \dirname(__DIR__, 2)))->getVersion(); + self::$version = (new VersionId('8.5.0', \dirname(__DIR__, 2)))->getVersion(); } return self::$version;