Skip to content

Commit 8fd0d8f

Browse files
Prepare release
1 parent e4976af commit 8fd0d8f

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

ChangeLog-9.2.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

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

5+
## [9.2.2] - 2020-06-07
6+
7+
### Changed
8+
9+
* Improved message of exception that is raised when multiple matchers can be applied to a test double invocation
10+
11+
### Fixed
12+
13+
* Fixed default values for `lowUpperBound` and `highLowerBound` in `phpunit.xsd`
14+
515
## [9.2.1] - 2020-06-05
616

717
### Fixed
@@ -20,5 +30,6 @@ All notable changes of the PHPUnit 9.2 release series are documented in this fil
2030
* [#4258](https://github.com/sebastianbergmann/phpunit/pull/4258): Prevent unpredictable result by raising an exception when multiple matchers can be applied to a test double invocation
2131
* The test runner no longer relies on `$_SERVER['REQUEST_TIME_FLOAT']` for printing the elapsed time
2232

33+
[9.2.2]: https://github.com/sebastianbergmann/phpunit/compare/9.2.1...9.2.2
2334
[9.2.1]: https://github.com/sebastianbergmann/phpunit/compare/9.2.0...9.2.1
2435
[9.2.0]: https://github.com/sebastianbergmann/phpunit/compare/9.1.5...9.2.0

src/Runner/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public static function id(): string
3333
}
3434

3535
if (self::$version === '') {
36-
self::$version = (new VersionId('9.2.1', \dirname(__DIR__, 2)))->getVersion();
36+
self::$version = (new VersionId('9.2.2', \dirname(__DIR__, 2)))->getVersion();
3737
}
3838

3939
return self::$version;

0 commit comments

Comments
 (0)