Skip to content

Commit

Permalink
Prepare v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Nov 9, 2021
1 parent b504171 commit 12acb81
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
CHANGELOG
=========

## 2.5.0

### Miscellaneous
- [#322](https://github.com/php-coveralls/php-coveralls/pull/322) Allow for Symfony:^6
- [#321](https://github.com/php-coveralls/php-coveralls/pull/321) Disallow `psr/log` v3
- [#319](https://github.com/php-coveralls/php-coveralls/pull/319) Added fallback to show where is problem with non-UTF8 char
- [#317](https://github.com/php-coveralls/php-coveralls/pull/317) Allow `psr/log` v2 and v3
- [#316](https://github.com/php-coveralls/php-coveralls/pull/316) Update README with Travis CI configuration detail
- [#311](https://github.com/php-coveralls/php-coveralls/pull/311) Update version in master to latest release

## 2.4.3

### Bug fix
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,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.4.3/php-coveralls.phar
https://github.com/php-coveralls/php-coveralls/releases/download/v2.5.0/php-coveralls.phar
```

Download the file and add exec permissions:

```sh
$ wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.4.3/php-coveralls.phar
$ wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.5.0/php-coveralls.phar
$ chmod +x php-coveralls.phar
```

Expand Down Expand Up @@ -104,7 +104,7 @@ Above settings are good for most projects if your test suite is executed once a

```json
"require-dev": {
"php-coveralls/php-coveralls": "^2.4",
"php-coveralls/php-coveralls": "^2.5",
"phpunit/phpcov": "^2.0"
},
```
Expand Down
2 changes: 1 addition & 1 deletion src/Bundle/CoverallsBundle/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ final class Version
*
* @var string
*/
const VERSION = '2.4.3';
const VERSION = '2.5.0';
}

0 comments on commit 12acb81

Please sign in to comment.