Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Apr 20, 2020
1 parent c8a92a7 commit d99d4e6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ChangeLog-9.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [9.1.2] - 2020-04-20

### Changed

* Changed how `PHPUnit\TextUI\Command` passes warnings to `PHPUnit\TextUI\TestRunner`

## [9.1.1] - 2020-04-03

### Fixed
Expand Down Expand Up @@ -45,5 +51,6 @@ All notable changes of the PHPUnit 9.1 release series are documented in this fil
* [#4105](https://github.com/sebastianbergmann/phpunit/issues/4105): Deprecate multiple test case classes in single file and test case class name differing from filename
* [#4141](https://github.com/sebastianbergmann/phpunit/pull/4141): Deprecate Prophecy integration

[9.1.2]: https://github.com/sebastianbergmann/phpunit/compare/9.1.1...9.1.2
[9.1.1]: https://github.com/sebastianbergmann/phpunit/compare/9.1.0...9.1.1
[9.1.0]: https://github.com/sebastianbergmann/phpunit/compare/9.0.2...9.1.0
2 changes: 1 addition & 1 deletion src/Runner/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static function id(): string
}

if (self::$version === '') {
self::$version = (new VersionId('9.1.1', \dirname(__DIR__, 2)))->getVersion();
self::$version = (new VersionId('9.1.2', \dirname(__DIR__, 2)))->getVersion();
}

return self::$version;
Expand Down

0 comments on commit d99d4e6

Please sign in to comment.