diff --git a/ChangeLog-10.2.md b/ChangeLog-10.2.md index 994f11f6f17..51739592a75 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.6] - 2023-MM-DD +## [10.2.6] - 2023-07-17 * [#5445](https://github.com/sebastianbergmann/phpunit/issues/5445): Decouple printing of unexpected output from progress printer @@ -60,7 +60,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.6]: https://github.com/sebastianbergmann/phpunit/compare/10.2.5...10.2 +[10.2.6]: https://github.com/sebastianbergmann/phpunit/compare/10.2.5...10.2.6 [10.2.5]: https://github.com/sebastianbergmann/phpunit/compare/10.2.4...10.2.5 [10.2.4]: https://github.com/sebastianbergmann/phpunit/compare/10.2.3...10.2.4 [10.2.3]: https://github.com/sebastianbergmann/phpunit/compare/10.2.2...10.2.3 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index c756ea44bfe..ceca30363ac 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.5', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('10.2.6', dirname(__DIR__, 2)))->asString(); } return self::$version;