From f9ba7bd3c9f3ff54ec379d7a1c2e3f13fe0bbde4 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 27 Nov 2024 11:44:52 +0100 Subject: [PATCH] Prepare release --- ChangeLog-11.4.md | 3 ++- src/Runner/Version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog-11.4.md b/ChangeLog-11.4.md index a915d6ed631..7d13fb25b1a 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.4] - 2024-MM-DD +## [11.4.4] - 2024-11-27 ### Fixed @@ -61,6 +61,7 @@ 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.4]: https://github.com/sebastianbergmann/phpunit/compare/11.4.3...11.4.4 [11.4.3]: https://github.com/sebastianbergmann/phpunit/compare/11.4.2...11.4.3 [11.4.2]: https://github.com/sebastianbergmann/phpunit/compare/11.4.1...11.4.2 [11.4.1]: https://github.com/sebastianbergmann/phpunit/compare/11.4.0...11.4.1 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 2316ecd8e69..589ff8a5184 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.3', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('11.4.4', dirname(__DIR__, 2)))->asString(); } return self::$version;