diff --git a/CHANGELOG.md b/CHANGELOG.md index e4af0cda..3dd5eb27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ CHANGELOG ========= +## 2.7.0 + +### Miscellaneous + +* DX: allow Symfony ^7 (#369) +* chore: drop PHP 5.x support (#371) + ## 2.6.0 ### Miscellaneous diff --git a/README.md b/README.md index 29d6f9a1..5b921161 100644 --- a/README.md +++ b/README.md @@ -27,13 +27,13 @@ We started to create a phar file, starting from the version 0.7.0 release. It is available at the URLs like: ``` -https://github.com/php-coveralls/php-coveralls/releases/download/v2.6.0/php-coveralls.phar +https://github.com/php-coveralls/php-coveralls/releases/download/v2.7.0/php-coveralls.phar ``` Download the file and add exec permissions: ```sh -$ wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.6.0/php-coveralls.phar +$ wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.7.0/php-coveralls.phar $ chmod +x php-coveralls.phar ``` @@ -107,7 +107,7 @@ Above settings are good for most projects if your test suite is executed once a ```json "require-dev": { - "php-coveralls/php-coveralls": "^2.6", + "php-coveralls/php-coveralls": "^2.7", "phpunit/phpcov": "^2.0" }, ``` diff --git a/src/Bundle/CoverallsBundle/Version.php b/src/Bundle/CoverallsBundle/Version.php index 014cd51c..1a921140 100644 --- a/src/Bundle/CoverallsBundle/Version.php +++ b/src/Bundle/CoverallsBundle/Version.php @@ -14,5 +14,5 @@ final class Version * * @var string */ - const VERSION = '2.6.0'; + const VERSION = '2.7.0'; }