Skip to content

Commit 48db383

Browse files
Bump
1 parent 9dfc705 commit 48db383

File tree

5 files changed

+15
-35
lines changed

5 files changed

+15
-35
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
name: CI
88

99
env:
10-
COMPOSER_ROOT_VERSION: "12.1.x-dev"
10+
COMPOSER_ROOT_VERSION: "12.2.x-dev"
1111

1212
jobs:
1313
coding-guidelines:

ChangeLog-12.1.md

-31
This file was deleted.

ChangeLog-12.2.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ChangeLog
2+
3+
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
4+
5+
## [12.2.0] - 2025-MM-DD
6+
7+
### Changed
8+
9+
* 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)
10+
11+
[12.2.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.1.2...main

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"theseer/tokenizer": "^1.2.3"
4444
},
4545
"require-dev": {
46-
"phpunit/phpunit": "^12.0"
46+
"phpunit/phpunit": "^12.1"
4747
},
4848
"suggest": {
4949
"ext-pcov": "PHP extension that provides line coverage",
@@ -61,7 +61,7 @@
6161
},
6262
"extra": {
6363
"branch-alias": {
64-
"dev-main": "12.1.x-dev"
64+
"dev-main": "12.2.x-dev"
6565
}
6666
}
6767
}

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.1.2', dirname(__DIR__)))->asString();
22+
self::$version = (new VersionId('12.2', dirname(__DIR__)))->asString();
2323
}
2424

2525
return self::$version;

0 commit comments

Comments
 (0)