diff --git a/ChangeLog-10.2.md b/ChangeLog-10.2.md index c7fc548ae7b..46c7192ff04 100644 --- a/ChangeLog-10.2.md +++ b/ChangeLog-10.2.md @@ -2,7 +2,7 @@ All notable changes of the PHPUnit 10.2 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. -## [10.2.3] - 2023-MM-DD +## [10.2.3] - 2023-06-30 ### Changed @@ -43,7 +43,7 @@ All notable changes of the PHPUnit 10.2 release series are documented in this fi * [#5366](https://github.com/sebastianbergmann/phpunit/issues/5366): `PHPUnit\Event\TestSuite\Loaded` event has incomplete `PHPUnit\Event\TestSuite\TestSuite` value object * Always use `X.Y.Z` version number (and not just `X.Y`) of PHPUnit's version when checking whether a PHAR-distributed extension is compatible -[10.2.3]: https://github.com/sebastianbergmann/phpunit/compare/10.2.2...10.2 +[10.2.3]: https://github.com/sebastianbergmann/phpunit/compare/10.2.2...10.2.3 [10.2.2]: https://github.com/sebastianbergmann/phpunit/compare/10.2.1...10.2.2 [10.2.1]: https://github.com/sebastianbergmann/phpunit/compare/10.2.0...10.2.1 [10.2.0]: https://github.com/sebastianbergmann/phpunit/compare/10.1.3...10.2.0 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 42bddd92f4b..b513016ff32 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.2.2', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('10.2.3', dirname(__DIR__, 2)))->asString(); } return self::$version;