From 03bf7e0122c1345cf0f52118b6ed494c51342990 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Mon, 14 Nov 2016 07:25:06 +0100 Subject: [PATCH 1/2] Update ChangeLog --- ChangeLog-4.8.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ChangeLog-4.8.md b/ChangeLog-4.8.md index b717a2a709b..48a4630b595 100644 --- a/ChangeLog-4.8.md +++ b/ChangeLog-4.8.md @@ -2,6 +2,12 @@ All notable changes of the PHPUnit 4.8 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. +## [4.8.28] - 2016-MM-DD + +### Fixed + +* Improved the fix for [#1955](https://github.com/sebastianbergmann/phpunit/issues/1955): Process isolation fails when running tests with `phpdbg -qrr` + ## [4.8.27] - 2016-07-21 ### Fixed From 558a3a0d28b4cb7e4a593a4fbd2220e787076225 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Mon, 14 Nov 2016 07:25:28 +0100 Subject: [PATCH 2/2] Prepare release --- ChangeLog-4.8.md | 2 +- src/Runner/Version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog-4.8.md b/ChangeLog-4.8.md index 48a4630b595..678c282ba96 100644 --- a/ChangeLog-4.8.md +++ b/ChangeLog-4.8.md @@ -2,7 +2,7 @@ All notable changes of the PHPUnit 4.8 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. -## [4.8.28] - 2016-MM-DD +## [4.8.28] - 2016-11-14 ### Fixed diff --git a/src/Runner/Version.php b/src/Runner/Version.php index 19b51558123..50150c973b7 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('4.8.27', dirname(dirname(__DIR__))); + $version = new SebastianBergmann\Version('4.8.28', dirname(dirname(__DIR__))); self::$version = $version->getVersion(); }