Skip to content

Commit fc4f5ee

Browse files
Prepare release
1 parent ef5bf58 commit fc4f5ee

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

ChangeLog-10.1.md

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

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

5-
## [10.1.0] - 2023-04-14
5+
## [10.1.0] - 2023-04-13
66

77
### Added
88

@@ -12,4 +12,4 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
1212

1313
* The `SebastianBergmann\CodeCoverage\Filter::includeDirectory()`, `SebastianBergmann\CodeCoverage\Filter::excludeDirectory()`, and `SebastianBergmann\CodeCoverage\Filter::excludeFile()` methods are now deprecated
1414

15-
[10.1.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/10.0...main
15+
[10.1.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/10.0.2...10.1.0

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
"optimize-autoloader": true,
2828
"sort-packages": true
2929
},
30-
"minimum-stability": "dev",
3130
"prefer-stable": true,
3231
"require": {
3332
"php": ">=8.1",
@@ -45,7 +44,7 @@
4544
"theseer/tokenizer": "^1.2.0"
4645
},
4746
"require-dev": {
48-
"phpunit/phpunit": "^10.1"
47+
"phpunit/phpunit": "^10.0"
4948
},
5049
"suggest": {
5150
"ext-pcov": "PHP extension that provides line coverage",

phpunit.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
</testsuite>
1313
</testsuites>
1414

15-
<source>
15+
<coverage>
1616
<include>
1717
<directory suffix=".php">src</directory>
1818
</include>
19-
</source>
19+
</coverage>
2020

2121
<php>
2222
<ini name="serialize_precision" value="14"/>

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

2525
return self::$version;

0 commit comments

Comments
 (0)