Skip to content

Commit c84f05b

Browse files
Merge branch '2.2'
2 parents 84b40c5 + eabf68b commit c84f05b

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

ChangeLog-2.2.md

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

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

5+
## [2.2.4] - 2015-10-06
6+
7+
### Fixed
8+
9+
* Fixed [#391](https://github.com/sebastianbergmann/php-code-coverage/pull/391): Missing `</abbr>` tag
10+
511
## [2.2.3] - 2015-09-14
612

713
### Fixed
@@ -42,7 +48,8 @@ All notable changes of the PHP_CodeCoverage 2.2 release series are documented in
4248

4349
* The dedicated driver for HHVM, `PHP_CodeCoverage_Driver_HHVM` has been removed
4450

45-
[2.2.3]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.2.3...2.2.3
51+
[2.2.4]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.2.3...2.2.4
52+
[2.2.3]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.2.2...2.2.3
4653
[2.2.2]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.2.1...2.2.2
4754
[2.2.1]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.2.0...2.2.1
4855
[2.2.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.1...2.2.0

ChangeLog-3.0.md

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

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

5+
## [3.0.1] - 2015-10-06
6+
7+
### Fixed
8+
9+
* Fixed [#391](https://github.com/sebastianbergmann/php-code-coverage/pull/391): Missing `</abbr>` tag
10+
511
## [3.0.0] - 2015-10-02
612

713
### Changed
@@ -13,5 +19,6 @@ All notable changes of the PHP_CodeCoverage 3.0 release series are documented in
1319
* The blacklist functionality has been removed
1420
* PHP_CodeCoverage is no longer supported on PHP 5.3, PHP 5.4, and PHP 5.5
1521

22+
[3.0.1]: https://github.com/sebastianbergmann/php-code-coverage/compare/3.0.0...3.0.1
1623
[3.0.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/2.2...3.0.0
1724

src/CodeCoverage/Report/HTML/Renderer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ abstract class PHP_CodeCoverage_Report_HTML_Renderer
5858
*/
5959
public function __construct($templatePath, $generator, $date, $lowUpperBound, $highLowerBound)
6060
{
61-
$version = new SebastianBergmann\Version('3.0.0', dirname(dirname(dirname(dirname(__DIR__)))));
61+
$version = new SebastianBergmann\Version('3.0.1', dirname(dirname(dirname(dirname(__DIR__)))));
6262

6363
$this->templatePath = $templatePath;
6464
$this->generator = $generator;

src/CodeCoverage/Report/HTML/Renderer/Dashboard.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ protected function insufficientCoverage(array $classes, $baseLink)
213213
list($class, $method) = explode('::', $methodName);
214214

215215
$result['method'] .= sprintf(
216-
' <tr><td><a href="%s"><abbr title="%s">%s</a></a></td><td class="text-right">%d%%</td></tr>' . "\n",
216+
' <tr><td><a href="%s"><abbr title="%s">%s</abbr></a></td><td class="text-right">%d%%</td></tr>' . "\n",
217217
str_replace($baseLink, '', $classes[$class]['methods'][$method]['link']),
218218
$methodName,
219219
$method,

0 commit comments

Comments
 (0)