From c319d08ebd31e137034c84ad7339054709491485 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Sat, 3 Aug 2019 17:40:07 +0200 Subject: [PATCH] Prepare release --- .travis.yml | 2 +- ChangeLog-8.3.md | 4 ++-- src/Runner/Version.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4945caef06f..9e5cddf3cc2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -72,4 +72,4 @@ jobs: install: - phpenv config-rm xdebug.ini script: - - ./tools/roave-backward-compatibility-check + - ./tools/roave-backward-compatibility-check --from=8.3.3 diff --git a/ChangeLog-8.3.md b/ChangeLog-8.3.md index 5f6bffc2bf2..8a11d8bde4b 100644 --- a/ChangeLog-8.3.md +++ b/ChangeLog-8.3.md @@ -2,11 +2,11 @@ All notable changes of the PHPUnit 8.3 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. -## [8.3.3] - 2019-MM-DD +## [8.3.3] - 2019-08-03 ### Fixed -* Implemented [#3781](https://github.com/sebastianbergmann/phpunit/pull/3781): `MockBuilder::addMethods()` and `MockBuilder::onlyMethods()` do not handle empty parameter array correctly +* Fixed [#3781](https://github.com/sebastianbergmann/phpunit/pull/3781): `MockBuilder::addMethods()` and `MockBuilder::onlyMethods()` do not handle empty parameter array correctly ## [8.3.2] - 2019-08-02 diff --git a/src/Runner/Version.php b/src/Runner/Version.php index e96d942ef85..9ff9b3d19ee 100644 --- a/src/Runner/Version.php +++ b/src/Runner/Version.php @@ -33,7 +33,7 @@ public static function id(): string } if (self::$version === '') { - self::$version = (new VersionId('8.3.2', \dirname(__DIR__, 2)))->getVersion(); + self::$version = (new VersionId('8.3.3', \dirname(__DIR__, 2)))->getVersion(); } return self::$version;