Skip to content

Commit cb644d7

Browse files
Prepare release
1 parent 73435f4 commit cb644d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ChangeLog-8.5.md

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

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

5-
## [8.5.12] - 2020-MM-DD
5+
## [8.5.12] - 2020-11-30
66

77
### Changed
88

9-
* Changed PHP version constraint in `composer.json` from `^7.2` to `>=7.2`
9+
* Changed PHP version constraint in `composer.json` from `^7.2` to `>=7.2` to allow the installation of PHPUnit 8.5 on PHP 8. Please note that the code coverage functionality is not available for PHPUnit 8.5 on PHP 8.
1010

1111
### Fixed
1212

@@ -110,7 +110,7 @@ All notable changes of the PHPUnit 8.5 release series are documented in this fil
110110
* [#3967](https://github.com/sebastianbergmann/phpunit/issues/3967): Cannot double interface that extends interface that extends `\Throwable`
111111
* [#3968](https://github.com/sebastianbergmann/phpunit/pull/3968): Test class run in a separate PHP process are passing when `exit` called inside
112112

113-
[8.5.12]: https://github.com/sebastianbergmann/phpunit/compare/8.5.11...8.5
113+
[8.5.12]: https://github.com/sebastianbergmann/phpunit/compare/8.5.11...8.5.12
114114
[8.5.11]: https://github.com/sebastianbergmann/phpunit/compare/8.5.10...8.5.11
115115
[8.5.10]: https://github.com/sebastianbergmann/phpunit/compare/8.5.9...8.5.10
116116
[8.5.9]: https://github.com/sebastianbergmann/phpunit/compare/8.5.8...8.5.9

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('8.5.11', \dirname(__DIR__, 2)))->getVersion();
36+
self::$version = (new VersionId('8.5.12', \dirname(__DIR__, 2)))->getVersion();
3737
}
3838

3939
return self::$version;

0 commit comments

Comments
 (0)