Skip to content

Commit 8e86be3

Browse files
Prepare release
1 parent 01690b7 commit 8e86be3

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ChangeLog-8.5.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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.13] - 2020-12-01
6+
7+
### Fixed
8+
9+
* Running tests in isolated processes did not work with PHP 8 on Windows
10+
511
## [8.5.12] - 2020-11-30
612

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

119+
[8.5.13]: https://github.com/sebastianbergmann/phpunit/compare/8.5.12...8.5.13
113120
[8.5.12]: https://github.com/sebastianbergmann/phpunit/compare/8.5.11...8.5.12
114121
[8.5.11]: https://github.com/sebastianbergmann/phpunit/compare/8.5.10...8.5.11
115122
[8.5.10]: https://github.com/sebastianbergmann/phpunit/compare/8.5.9...8.5.10

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

3939
return self::$version;

0 commit comments

Comments
 (0)