Skip to content

Commit 0bd6707

Browse files
Revert "Bump dependencies (so that users that install using Composer's --prefer-lowest CLI option also get recent versions)"
This reverts commit b61113f.
1 parent b61113f commit 0bd6707

File tree

3 files changed

+11
-18
lines changed

3 files changed

+11
-18
lines changed

ChangeLog-10.1.md

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

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

5-
## [10.1.16] - 2024-07-12
6-
7-
### Changed
8-
9-
* Updated dependencies (so that users that install using Composer's `--prefer-lowest` CLI option also get recent versions)
10-
115
## [10.1.15] - 2024-06-29
126

137
### Fixed
@@ -113,7 +107,6 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
113107

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

116-
[10.1.16]: https://github.com/sebastianbergmann/php-code-coverage/compare/10.1.15...10.1.16
117110
[10.1.15]: https://github.com/sebastianbergmann/php-code-coverage/compare/10.1.14...10.1.15
118111
[10.1.14]: https://github.com/sebastianbergmann/php-code-coverage/compare/10.1.13...10.1.14
119112
[10.1.13]: https://github.com/sebastianbergmann/php-code-coverage/compare/10.1.12...10.1.13

composer.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@
3333
"ext-dom": "*",
3434
"ext-libxml": "*",
3535
"ext-xmlwriter": "*",
36-
"nikic/php-parser": "^4.19.1 || ^5.1.0",
37-
"phpunit/php-file-iterator": "^4.1.0",
38-
"phpunit/php-text-template": "^3.0.1",
39-
"sebastian/code-unit-reverse-lookup": "^3.0.0",
40-
"sebastian/complexity": "^3.2.0",
41-
"sebastian/environment": "^6.1.0",
42-
"sebastian/lines-of-code": "^2.0.2",
43-
"sebastian/version": "^4.0.1",
44-
"theseer/tokenizer": "^1.2.3"
36+
"nikic/php-parser": "^4.18 || ^5.0",
37+
"phpunit/php-file-iterator": "^4.0",
38+
"phpunit/php-text-template": "^3.0",
39+
"sebastian/code-unit-reverse-lookup": "^3.0",
40+
"sebastian/complexity": "^3.0",
41+
"sebastian/environment": "^6.0",
42+
"sebastian/lines-of-code": "^2.0",
43+
"sebastian/version": "^4.0",
44+
"theseer/tokenizer": "^1.2.0"
4545
},
4646
"require-dev": {
47-
"phpunit/phpunit": "^10.5.27"
47+
"phpunit/phpunit": "^10.1"
4848
},
4949
"suggest": {
5050
"ext-pcov": "PHP extension that provides line coverage",

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

2525
return self::$version;

0 commit comments

Comments
 (0)