Skip to content

Commit 52e10ad

Browse files
Bump
1 parent ad44fae commit 52e10ad

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

ChangeLog.md

Lines changed: 7 additions & 0 deletions
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+
## [10.0.0] - 2021-02-05
6+
7+
### Removed
8+
9+
* This component is no longer supported on PHP 7.3
10+
511
## [9.2.5] - 2020-11-28
612

713
### Fixed
@@ -318,6 +324,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
318324
* Class names are now abbreviated (unqualified name shown, fully qualified name shown on hover) in the file view of the HTML report
319325
* Update HTML report to Bootstrap 4
320326

327+
[10.0.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/9.2...10.0.0
321328
[9.2.5]: https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.4...9.2.5
322329
[9.2.4]: https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.3...9.2.4
323330
[9.2.3]: https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.2...9.2.3

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,15 @@
2121
},
2222
"config": {
2323
"platform": {
24-
"php": "7.3.0"
24+
"php": "7.4.0"
2525
},
2626
"optimize-autoloader": true,
2727
"sort-packages": true
2828
},
29+
"minimum-stability": "dev",
2930
"prefer-stable": true,
3031
"require": {
31-
"php": ">=7.3",
32+
"php": ">=7.4",
3233
"ext-dom": "*",
3334
"ext-libxml": "*",
3435
"ext-xmlwriter": "*",
@@ -43,7 +44,7 @@
4344
"theseer/tokenizer": "^1.2.0"
4445
},
4546
"require-dev": {
46-
"phpunit/phpunit": "^9.3"
47+
"phpunit/phpunit": "^10.0"
4748
},
4849
"suggest": {
4950
"ext-pcov": "*",
@@ -62,7 +63,7 @@
6263
},
6364
"extra": {
6465
"branch-alias": {
65-
"dev-master": "9.2-dev"
66+
"dev-master": "10.0-dev"
6667
}
6768
}
6869
}

src/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ final class Version
2222
public static function id(): string
2323
{
2424
if (self::$version === null) {
25-
self::$version = (new VersionId('9.2.5', dirname(__DIR__)))->getVersion();
25+
self::$version = (new VersionId('10.0', dirname(__DIR__)))->getVersion();
2626
}
2727

2828
return self::$version;

0 commit comments

Comments
 (0)