diff --git a/ChangeLog-10.0.md b/ChangeLog-10.0.md index 2ebe985bd1a..601003f7867 100644 --- a/ChangeLog-10.0.md +++ b/ChangeLog-10.0.md @@ -2,7 +2,7 @@ All notable changes of the PHPUnit 10.0 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. -## [10.0.8] - 2023-MM-DD +## [10.0.8] - 2023-02-18 ### Fixed @@ -190,7 +190,7 @@ All notable changes of the PHPUnit 10.0 release series are documented in this fi * PHP 7.3, PHP 7.4, and PHP 8.0 are no longer supported * `phpunit/php-code-coverage` [no longer supports PHPDBG and Xdebug 2](https://github.com/sebastianbergmann/php-code-coverage/blob/10.0.0/ChangeLog.md#1000---2023-02-03) -[10.0.8]: https://github.com/sebastianbergmann/phpunit/compare/10.0.7...10.0 +[10.0.8]: https://github.com/sebastianbergmann/phpunit/compare/10.0.7...10.0.8 [10.0.7]: https://github.com/sebastianbergmann/phpunit/compare/10.0.6...10.0.7 [10.0.6]: https://github.com/sebastianbergmann/phpunit/compare/10.0.5...10.0.6 [10.0.5]: https://github.com/sebastianbergmann/phpunit/compare/10.0.4...10.0.5 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 39f1bf08792..87334bb1afe 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('10.0.7', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('10.0.8', dirname(__DIR__, 2)))->asString(); } return self::$version;