Skip to content

Commit

Permalink
Prepare v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Sep 24, 2020
1 parent 7d872a9 commit ddbf9ad
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
CHANGELOG
=========

## 2.3.0

### Enhancement

- [#290](https://github.com/php-coveralls/php-coveralls/pull/290) Allow to specify endpoint in arguments
- [#288](https://github.com/php-coveralls/php-coveralls/pull/288) Add Guzzle 7 support

### Miscellaneous

- [#294](https://github.com/php-coveralls/php-coveralls/pull/294) DX: Allow PHPUnit 7
- [#292](https://github.com/php-coveralls/php-coveralls/pull/292) CI: reduce amount of jobs
- [#291](https://github.com/php-coveralls/php-coveralls/pull/291) DX: Configurator - reduce cyclomatic complexity
- [#286](https://github.com/php-coveralls/php-coveralls/pull/286) Fix incorrect version in README
- [#283](https://github.com/php-coveralls/php-coveralls/pull/283) Update .travis.yml to include PHP 7.4

## 2.2.0

### Enhancement
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.2.0/php-coveralls.phar
https://github.com/php-coveralls/php-coveralls/releases/download/v2.3.0/php-coveralls.phar
```

Download the file and add exec permissions:

```sh
$ wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.2.0/php-coveralls.phar
$ wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.3.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.2",
"php-coveralls/php-coveralls": "^2.3",
"phpunit/phpcov": "^2.0"
},
```
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
"dev-master": "2.3-dev"
}
}
}
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.2.0';
const VERSION = '2.3.0';
}

0 comments on commit ddbf9ad

Please sign in to comment.