Skip to content

Commit 448f2c5

Browse files
Prepare release
1 parent 453ac7b commit 448f2c5

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ChangeLog-12.2.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.2.1] - 2025-05-04
6+
7+
### Changed
8+
9+
* Safeguard `file_get_contents()` call with `is_file()` call to avoid problems with error handlers that act on suppressed warnings
10+
511
## [12.2.0] - 2025-05-03
612

713
### Changed
@@ -11,4 +17,5 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
1117
* Reduced number of I/O and hashing operations when using the static analysis cache
1218
* Use SHA-256 instead of MD5 to generate cache keys for static analysis cache (as SHA-256 is significantly faster than MD5 with PHP >= 8.4 on modern CPUs)
1319

20+
[12.2.1]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.2.0...12.2.1
1421
[12.2.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.1.2...12.2.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.2.0', dirname(__DIR__)))->asString();
22+
self::$version = (new VersionId('12.2.1', dirname(__DIR__)))->asString();
2323
}
2424

2525
return self::$version;

0 commit comments

Comments
 (0)