From 89fe0c530133c08f7fff89d3d727154e4e504925 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Sat, 5 Oct 2024 10:39:03 +0200 Subject: [PATCH] Prepare release --- ChangeLog-11.4.md | 4 ++-- src/Runner/Version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog-11.4.md b/ChangeLog-11.4.md index 8b1b85dec4..ad7cd3946f 100644 --- a/ChangeLog-11.4.md +++ b/ChangeLog-11.4.md @@ -2,7 +2,7 @@ All notable changes of the PHPUnit 11.4 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. -## [11.4.0] - 2024-10-04 +## [11.4.0] - 2024-10-05 ### Changed @@ -23,4 +23,4 @@ All notable changes of the PHPUnit 11.4 release series are documented in this fi * [#5958](https://github.com/sebastianbergmann/phpunit/issues/5958): Support for `#[CoversTrait]` and `#[UsesTrait]` attributes * [#5960](https://github.com/sebastianbergmann/phpunit/issues/5960): Support for targeting trait methods with the `#[CoversMethod]` and `#[UsesMethod]` attributes (and respective annotations) -[11.4.0]: https://github.com/sebastianbergmann/phpunit/compare/11.3...main +[11.4.0]: https://github.com/sebastianbergmann/phpunit/compare/11.3.6...11.4.0 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 42248a182b..c7c57cb99d 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('11.4', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('11.4.0', dirname(__DIR__, 2)))->asString(); } return self::$version;