From 882c5bf7aa85328d1010da2a76f4bb10c43778c6 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Fri, 5 Apr 2024 06:44:29 +0200 Subject: [PATCH] Prepare release --- ChangeLog-11.1.md | 2 +- src/Runner/Version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog-11.1.md b/ChangeLog-11.1.md index 692b7393355..a7ef03cee7b 100644 --- a/ChangeLog-11.1.md +++ b/ChangeLog-11.1.md @@ -26,4 +26,4 @@ All notable changes of the PHPUnit 11.1 release series are documented in this fi * [#5689](https://github.com/sebastianbergmann/phpunit/issues/5689): The `restrictDeprecations` attribute on the `` element of the XML configuration file is now deprecated in favor of the `ignoreSelfDeprecations`, `ignoreDirectDeprecations`, and `ignoreIndirectDeprecations` attributes * [#5709](https://github.com/sebastianbergmann/phpunit/issues/5709): Deprecate support for using comma-separated values with the `--group`, `--exclude-group`, `--covers`, `--uses`, and `--test-suffix` CLI options -[11.1.0]: https://github.com/sebastianbergmann/phpunit/compare/11.0...main +[11.1.0]: https://github.com/sebastianbergmann/phpunit/compare/11.0.10...11.1.0 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 6ff29d8c628..164b9150519 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.1', dirname(__DIR__, 2)))->asString(); + self::$version = (new VersionId('11.1.0', dirname(__DIR__, 2)))->asString(); } return self::$version;