Skip to content

Commit 24b708f

Browse files
Prepare release
1 parent b1c4734 commit 24b708f

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

ChangeLog-6.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 6.5 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
44

5+
## [6.5.2] - 2017-12-02
6+
7+
### Changed
8+
9+
* Require version 5.0.4 of `phpunit/phpunit-mock-objects` for [phpunit-mock-objects#388](https://github.com/sebastianbergmann/phpunit-mock-objects/issues/388)
10+
511
## [6.5.1] - 2017-12-01
612

713
* Fixed [#2886](https://github.com/sebastianbergmann/phpunit/pull/2886): Forced environment variables do not affect `getenv()`
@@ -18,6 +24,7 @@ All notable changes of the PHPUnit 6.5 release series are documented in this fil
1824
* Fixed [#2654](https://github.com/sebastianbergmann/phpunit/issues/2654): Problems with `assertJsonStringEqualsJsonString()`
1925
* Fixed [#2810](https://github.com/sebastianbergmann/phpunit/pull/2810): Code Coverage for PHPT tests does not work
2026

27+
[6.5.2]: https://github.com/sebastianbergmann/phpunit/compare/6.5.1...6.5.2
2128
[6.5.1]: https://github.com/sebastianbergmann/phpunit/compare/6.5.0...6.5.1
2229
[6.5.0]: https://github.com/sebastianbergmann/phpunit/compare/6.4...6.5.0
2330

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"phpunit/php-file-iterator": "^1.4.3",
3636
"phpunit/php-text-template": "^1.2.1",
3737
"phpunit/php-timer": "^1.0.9",
38-
"phpunit/phpunit-mock-objects": "^5.0",
38+
"phpunit/phpunit-mock-objects": "^5.0.4",
3939
"sebastian/comparator": "^2.1",
4040
"sebastian/diff": "^2.0",
4141
"sebastian/environment": "^3.1",

src/Runner/Version.php

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

3434
if (self::$version === null) {
35-
$version = new VersionId('6.5.1', \dirname(\dirname(__DIR__)));
35+
$version = new VersionId('6.5.2', \dirname(\dirname(__DIR__)));
3636
self::$version = $version->getVersion();
3737
}
3838

0 commit comments

Comments
 (0)