From cacd8b9dd224efa8eb28beb69004126c7ca1a1a1 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Thu, 26 Oct 2023 09:21:45 +0200 Subject: [PATCH] Prepare release --- ChangeLog-10.4.md | 4 ++-- src/Runner/Version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog-10.4.md b/ChangeLog-10.4.md index 9cb6f1cd87e..b9f1a045f56 100644 --- a/ChangeLog-10.4.md +++ b/ChangeLog-10.4.md @@ -2,7 +2,7 @@ All notable changes of the PHPUnit 10.4 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. -## [10.4.2] - 2023-MM-DD +## [10.4.2] - 2023-10-26 ### Fixed @@ -47,6 +47,6 @@ All notable changes of the PHPUnit 10.4 release series are documented in this fi * `PHPUnit\TextUI\Configuration\Configuration::cliArgument()` and `PHPUnit\TextUI\Configuration\Configuration::hasCliArgument()` * `PHPUnit\Framework\Constraint\Constraint::exporter()` -[10.4.2]: https://github.com/sebastianbergmann/phpunit/compare/10.4.1...10.4 +[10.4.2]: https://github.com/sebastianbergmann/phpunit/compare/10.4.1...10.4.2 [10.4.1]: https://github.com/sebastianbergmann/phpunit/compare/10.4.0...10.4.1 [10.4.0]: https://github.com/sebastianbergmann/phpunit/compare/10.3.5...10.4.0 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 31c221ce45e..0d701fe46c0 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.4.1', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('10.4.2', dirname(__DIR__, 2)))->asString(); } return self::$version;