Skip to content

Commit 89d8cb2

Browse files
committedFeb 7, 2025
Prepare release
1 parent 68403fa commit 89d8cb2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed
 

‎ChangeLog-12.0.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## [12.0.1] - 2025-02-07
6+
7+
### Fixed
8+
9+
* [#1061](https://github.com/sebastianbergmann/php-code-coverage/issues/1061): Enumerations cannot be targeted for code coverage
10+
511
## [12.0.0] - 2025-02-07
612

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

24+
[12.0.1]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.0.0...12.0.1
1825
[12.0.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0...12.0.0

‎src/Version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ final class Version
1919
public static function id(): string
2020
{
2121
if (self::$version === '') {
22-
self::$version = (new VersionId('12.0', dirname(__DIR__)))->asString();
22+
self::$version = (new VersionId('12.0.1', dirname(__DIR__)))->asString();
2323
}
2424

2525
return self::$version;

0 commit comments

Comments
 (0)