diff --git a/ChangeLog-11.0.md b/ChangeLog-11.0.md index 4935920ed..15f44db40 100644 --- a/ChangeLog-11.0.md +++ b/ChangeLog-11.0.md @@ -10,4 +10,4 @@ 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.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/10.1...main +[11.0.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/10.1...11.0.0 diff --git a/composer.json b/composer.json index f67b7f9dc..b47254227 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,6 @@ "sort-packages": true }, "prefer-stable": true, - "minimum-stability": "dev", "require": { "php": ">=8.2", "ext-dom": "*", diff --git a/src/Version.php b/src/Version.php index c7739dc6e..89a29b29c 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('10.1.11', dirname(__DIR__)))->asString(); + self::$version = (new VersionId('11.0.0', dirname(__DIR__)))->asString(); } return self::$version;