Skip to content

Commit 69c4f49

Browse files
Prepare release
1 parent ff57ea9 commit 69c4f49

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

ChangeLog-5.7.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22

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

5+
## [5.7.19] - 2017-04-03
6+
7+
### Fixed
8+
9+
* Fixed [#2638](https://github.com/sebastianbergmann/phpunit/pull/2638): Regression in `PHPUnit\Framework\TestCase:registerMockObjectsFromTestArguments()`
10+
511
## [5.7.18] - 2017-04-02
612

713
### Fixed
814

915
* Fixed [#2145](https://github.com/sebastianbergmann/phpunit/issues/2145): `--stop-on-failure` fails to stop on PHP 7
10-
* Fixed [#2572](https://github.com/sebastianbergmann/phpunit/issues/2572): `PHPUnit\Framework\TestCase:.registerMockObjectsFromTestArguments()` does not correctly handle arrays that reference themselves
16+
* Fixed [#2572](https://github.com/sebastianbergmann/phpunit/issues/2572): `PHPUnit\Framework\TestCase:registerMockObjectsFromTestArguments()` does not correctly handle arrays that reference themselves
1117

1218
## [5.7.17] - 2017-03-19
1319

@@ -149,6 +155,7 @@ All notable changes of the PHPUnit 5.7 release series are documented in this fil
149155
* The `--tap` and `--log-tap` commandline options have been deprecated
150156
* The `--self-update` and `--self-upgrade` commandline options have been deprecated (PHAR binary only)
151157

158+
[5.7.19]: https://github.com/sebastianbergmann/phpunit/compare/5.7.18...5.7.19
152159
[5.7.18]: https://github.com/sebastianbergmann/phpunit/compare/5.7.17...5.7.18
153160
[5.7.17]: https://github.com/sebastianbergmann/phpunit/compare/5.7.16...5.7.17
154161
[5.7.16]: https://github.com/sebastianbergmann/phpunit/compare/5.7.15...5.7.16

src/Runner/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static function id()
3030
}
3131

3232
if (self::$version === null) {
33-
$version = new Version('5.7.18', dirname(dirname(__DIR__)));
33+
$version = new Version('5.7.19', dirname(dirname(__DIR__)));
3434
self::$version = $version->getVersion();
3535
}
3636

0 commit comments

Comments
 (0)