Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jun 13, 2017
1 parent 6afeeec commit f278649
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ChangeLog-6.2.md
Expand Up @@ -2,6 +2,12 @@

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

## [6.2.2] - 2017-06-13

### Fixed

* Fixed [#2703](https://github.com/sebastianbergmann/phpunit/pull/2703): `RiskyTestError` class is not declared in the correct namespace

## [6.2.1] - 2017-06-02

### Changed
Expand All @@ -23,6 +29,7 @@ All notable changes of the PHPUnit 6.2 release series are documented in this fil
* Implemented [#2689](https://github.com/sebastianbergmann/phpunit/pull/2689): Unpack nested `IteratorAggregate` objects for `Count` constraint
* When `beStrictAboutCoversAnnotation="true"` is configured or `--strict-coverage` is used then a test is now also marked as risky when it specifies units of code using `@covers` or `@uses` that are not executed by the test

[6.2.2]: https://github.com/sebastianbergmann/phpunit/compare/6.2.1...6.2.2
[6.2.1]: https://github.com/sebastianbergmann/phpunit/compare/6.2.0...6.2.1
[6.2.0]: https://github.com/sebastianbergmann/phpunit/compare/6.1...6.2.0

2 changes: 1 addition & 1 deletion src/Runner/Version.php
Expand Up @@ -32,7 +32,7 @@ public static function id()
}

if (self::$version === null) {
$version = new VersionId('6.2.1', \dirname(\dirname(__DIR__)));
$version = new VersionId('6.2.2', \dirname(\dirname(__DIR__)));
self::$version = $version->getVersion();
}

Expand Down

0 comments on commit f278649

Please sign in to comment.