diff --git a/ChangeLog-11.4.md b/ChangeLog-11.4.md index 39408f2caf..3009d1e6f2 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.3] - 2024-MM-DD +## [11.4.3] - 2024-10-28 ### Changed @@ -55,7 +55,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.3]: https://github.com/sebastianbergmann/phpunit/compare/11.4.2...11.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 [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 681ccfc106..2316ecd8e6 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.2', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('11.4.3', dirname(__DIR__, 2)))->asString(); } return self::$version;