Skip to content
Snippets Groups Projects
Unverified Commit 448f2c50 authored by Sebastian Bergmann's avatar Sebastian Bergmann
Browse files

Prepare release

parent 453ac7b2
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,12 @@
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
## [12.2.1] - 2025-05-04
### Changed
* Safeguard `file_get_contents()` call with `is_file()` call to avoid problems with error handlers that act on suppressed warnings
## [12.2.0] - 2025-05-03
### Changed
......@@ -11,4 +17,5 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
* Reduced number of I/O and hashing operations when using the static analysis cache
* 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)
[12.2.1]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.2.0...12.2.1
[12.2.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.1.2...12.2.0
......@@ -19,7 +19,7 @@ final class Version
public static function id(): string
{
if (self::$version === '') {
self::$version = (new VersionId('12.2.0', dirname(__DIR__)))->asString();
self::$version = (new VersionId('12.2.1', dirname(__DIR__)))->asString();
}
return self::$version;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment