Skip to content

Commit

Permalink
Prepare v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Nov 20, 2019
1 parent 1b3d14a commit aac1422
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
CHANGELOG
=========

## 2.2.0

### Enhancement

- [#269](https://github.com/php-coveralls/php-coveralls/pull/269) Add possibility to change entry point

### Miscellaneous

- [#277](https://github.com/php-coveralls/php-coveralls/pull/277) DX: Update PHP CS Fixer
- [#276](https://github.com/php-coveralls/php-coveralls/pull/276) DX: Fix PHPMd config, allowing build to pass
- [#274](https://github.com/php-coveralls/php-coveralls/pull/274) Allow Symfony 5
- [#268](https://github.com/php-coveralls/php-coveralls/pull/268) Update minimum version of symfony/yaml to 2.0.5
- [#267](https://github.com/php-coveralls/php-coveralls/pull/267) Add --dev to install step

## 2.1.0

### Enhancement
Expand Down
8 changes: 4 additions & 4 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.1.0/php-coveralls.phar
https://github.com/php-coveralls/php-coveralls/releases/download/v2.2.0/php-coveralls.phar
```

Download the file and add exec permissions:

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

Expand All @@ -45,7 +45,7 @@ $ composer require --dev php-coveralls/php-coveralls
If you need support for PHP versions older than 5.5, you will need to use a 1.x version:

```sh
$ composer require --dev php-coveralls/php-coveralls '^2.1'
$ composer require --dev php-coveralls/php-coveralls '^2.2'
```

You can see this library on [Packagist](https://packagist.org/packages/php-coveralls/php-coveralls).
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.1",
"php-coveralls/php-coveralls": "^2.2",
"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.1-dev"
"dev-master": "2.2-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.1.0';
const VERSION = '2.2.0';
}

0 comments on commit aac1422

Please sign in to comment.