File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
4
4
5
+ ## [7.0.7] - 2019-07-25
6
+
7
+ ### Changed
8
+
9
+ * Bumped required version of php-token-stream
10
+
5
11
## [7.0.6] - 2019-07-08
6
12
7
13
### Changed
@@ -88,6 +94,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
88
94
* Class names are now abbreviated (unqualified name shown, fully qualified name shown on hover) in the file view of the HTML report
89
95
* Update HTML report to Bootstrap 4
90
96
97
+ [7.0.7]: https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.6...7.0.7
91
98
[7.0.6]: https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.5...7.0.6
92
99
[7.0.5]: https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.4...7.0.5
93
100
[7.0.4]: https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.3...7.0.4
Original file line number Diff line number Diff line change 29
29
"ext-dom": "*",
30
30
"ext-xmlwriter": "*",
31
31
"phpunit/php-file-iterator": "^2.0.2",
32
- "phpunit/php-token-stream": "^3.0.2 ",
32
+ "phpunit/php-token-stream": "^3.1.0 ",
33
33
"phpunit/php-text-template": "^1.2.1",
34
34
"sebastian/code-unit-reverse-lookup": "^1.0.1",
35
35
"sebastian/environment": "^4.2.2",
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ final class Version
21
21
public static function id(): string
22
22
{
23
23
if (self::$version === null) {
24
- $version = new VersionId('7.0.6 ', \dirname(__DIR__));
24
+ $version = new VersionId('7.0.7 ', \dirname(__DIR__));
25
25
self::$version = $version->getVersion();
26
26
}
27
27
You can’t perform that action at this time.
0 commit comments