Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Feb 7, 2025
1 parent 68403fa commit 89d8cb2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ChangeLog-12.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [12.0.1] - 2025-02-07

### Fixed

* [#1061](https://github.com/sebastianbergmann/php-code-coverage/issues/1061): Enumerations cannot be targeted for code coverage

## [12.0.0] - 2025-02-07

### Changed
Expand All @@ -15,4 +21,5 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
* This component is no longer supported on PHP 8.2
* This component no longer supports Xdebug versions before Xdebug 3.1

[12.0.1]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.0.0...12.0.1
[12.0.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0...12.0.0
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class Version
public static function id(): string
{
if (self::$version === '') {
self::$version = (new VersionId('12.0', dirname(__DIR__)))->asString();
self::$version = (new VersionId('12.0.1', dirname(__DIR__)))->asString();
}

return self::$version;
Expand Down

0 comments on commit 89d8cb2

Please sign in to comment.