Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Apr 3, 2020
1 parent 0784cf5 commit 848f652
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.1] - 2020-04-03

### Fixed

* [#4162](https://github.com/sebastianbergmann/phpunit/issues/4162): Raising an exception from a test double's configured method does not work

## [9.1.0] - 2020-04-03

### Added
Expand Down Expand Up @@ -39,4 +45,5 @@ 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.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.0', \dirname(__DIR__, 2)))->getVersion();
self::$version = (new VersionId('9.1.1', \dirname(__DIR__, 2)))->getVersion();
}

return self::$version;
Expand Down

0 comments on commit 848f652

Please sign in to comment.