From cd13b23ac5a519a4708e00736c26ee0bb28b2e01 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Tue, 25 Oct 2016 09:40:25 +0200 Subject: [PATCH] Prepare release --- ChangeLog-5.6.md | 5 +++++ src/Runner/Version.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog-5.6.md b/ChangeLog-5.6.md index d93328dccb7..dabd891a2a9 100644 --- a/ChangeLog-5.6.md +++ b/ChangeLog-5.6.md @@ -2,6 +2,10 @@ All notable changes of the PHPUnit 5.6 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. +## [5.6.2] - 2016-10-25 + +New PHAR release due to updated dependencies + ## [5.6.1] - 2016-10-07 ### Fixed @@ -22,6 +26,7 @@ All notable changes of the PHPUnit 5.6 release series are documented in this fil * Deprecated `PHPUnit\Framework\TestCase::setExpectedExceptionRegExp()` * `PHPUnit_Util_Printer` no longer optionally cleans up HTML output using `ext/tidy` +[5.6.2]: https://github.com/sebastianbergmann/phpunit/compare/5.6.1...5.6.2 [5.6.1]: https://github.com/sebastianbergmann/phpunit/compare/5.6.0...5.6.1 [5.6.0]: https://github.com/sebastianbergmann/phpunit/compare/5.5...5.6.0 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index ba010041b06..9195cec09c7 100644 --- a/src/Runner/Version.php +++ b/src/Runner/Version.php @@ -30,7 +30,7 @@ public static function id() } if (self::$version === null) { - $version = new SebastianBergmann\Version('5.6.1', dirname(dirname(__DIR__))); + $version = new SebastianBergmann\Version('5.6.2', dirname(dirname(__DIR__))); self::$version = $version->getVersion(); }