Prepare release
Автор
Sebastian Bergmann

Коммитер
Sebastian Bergmann
6 лет назад 
Файлов изменено: 2
+8
–1
075572d
ChangeLog.md
+7
–0
@@ -2,6 +2,12 @@ | ||
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. | ||
## [7.0.9] - 2019-11-20 | ||
## Changed | ||
* Implemented [#709](https://github.com/sebastianbergmann/php-code-coverage/pull/709): Prioritize PCOV over Xdebug | ||
## [7.0.8] - 2019-09-17 | ||
## Changed | ||
@@ -100,6 +106,7 @@ | ||
* Class names are now abbreviated (unqualified name shown, fully qualified name shown on hover) in the file view of the HTML report | ||
* Update HTML report to Bootstrap 4 | ||
[7.0.9]: https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.8...7.0.9 | ||
[7.0.8]: https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.7...7.0.8 | ||
[7.0.7]: https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.6...7.0.7 | ||
[7.0.6]: https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.5...7.0.6 |
src/Version.php
+1
–1
@@ -21,7 +21,7 @@ | ||
public static function id(): string | ||
{ | ||
if (self::$version === null) { | ||
$version = new VersionId('7.0.8', \dirname(__DIR__)); | ||
$version = new VersionId('7.0.9', \dirname(__DIR__)); | ||
self::$version = $version->getVersion(); | ||
} | ||
Cherry-pick
Команда cherry-pick позволяет выбрать отдельные коммиты из одной ветки и применить их к другой.