From 4dc2b7a606073f0fb80da09842ffb068b627c38f Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Sat, 29 Jun 2024 10:26:25 +0200 Subject: [PATCH] Prepare release --- ChangeLog-11.0.md | 4 ++-- src/Version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog-11.0.md b/ChangeLog-11.0.md index 0c031b8c..24a13d22 100644 --- a/ChangeLog-11.0.md +++ b/ChangeLog-11.0.md @@ -2,7 +2,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. -## [11.0.4] - 2024-MM-DD +## [11.0.4] - 2024-06-29 ### Fixed @@ -34,7 +34,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt * This component now requires PHP-Parser 5 * This component is no longer supported on PHP 8.1 -[11.0.4]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0.3...main +[11.0.4]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0.3...11.0.4 [11.0.3]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0.2...11.0.3 [11.0.2]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0.1...11.0.2 [11.0.1]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0.0...11.0.1 diff --git a/src/Version.php b/src/Version.php index ab5e5053..6509741b 100644 --- a/src/Version.php +++ b/src/Version.php @@ -19,7 +19,7 @@ final class Version public static function id(): string { if (self::$version === '') { - self::$version = (new VersionId('11.0.3', dirname(__DIR__)))->asString(); + self::$version = (new VersionId('11.0.4', dirname(__DIR__)))->asString(); } return self::$version;