diff --git a/CHANGELOG.md b/CHANGELOG.md index 515ebfb..b9b3345 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,3 +14,7 @@ This is the list of changes for the Version 1.0 release series. ## Version 1.0.2 * Bump library version + +## Version 1.0.7 + +* Add symfony/finder ^5.0 as OR dependency diff --git a/README.md b/README.md index 2ec6afd..16822e5 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Simply add a dependency on `andreas-weber/php-junit-merge` to your project's `co After updating dependencies by composer a new binary `php-junit-merge` is available for usage. root@dev:~/projects/sample/vendor/bin ./phpjunitmerge - phpjunitmerge 1.0.5 by Andreas Weber + phpjunitmerge 1.0.7 by Andreas Weber Usage: phpjunitmerge [--names="..."] [--ignore="..."] dir file diff --git a/composer.json b/composer.json index 2d809bc..7f566b4 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ "require": { "php": ">=5.6", "symfony/console": "^3.0 || ^4.0", - "symfony/finder": "^3.0 || ^4.0", + "symfony/finder": "^3.0 || ^4.0 || ^5.0", "theseer/fdomdocument": "1.6.*" }, "require-dev": { diff --git a/src/Console/Application.php b/src/Console/Application.php index a586826..7723e34 100644 --- a/src/Console/Application.php +++ b/src/Console/Application.php @@ -55,7 +55,7 @@ class Application extends ConsoleApplication */ public function __construct() { - parent::__construct('phpjunitmerge', '1.0.6'); + parent::__construct('phpjunitmerge', '1.0.7'); } /**