Skip to content

Commit

Permalink
Prepare v2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Nov 22, 2023
1 parent c47845c commit b36fa43
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions 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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -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
```

Expand Down Expand Up @@ -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"
},
```
Expand Down
2 changes: 1 addition & 1 deletion src/Bundle/CoverallsBundle/Version.php
Expand Up @@ -14,5 +14,5 @@ final class Version
*
* @var string
*/
const VERSION = '2.6.0';
const VERSION = '2.7.0';
}

0 comments on commit b36fa43

Please sign in to comment.