Skip to content

Commit

Permalink
Merging develop to master in preparation for master release.
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Dec 3, 2019
2 parents b433980 + a7d2d81 commit 0083e36
Show file tree
Hide file tree
Showing 79 changed files with 627 additions and 410 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.phpunit.result.cache
/clover.xml
/coveralls-upload.json
/docs/html/
Expand Down
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ matrix:
- php: 7.3
env:
- DEPS=latest
- php: 7.4snapshot
env:
- DEPS=lowest
- php: 7.4snapshot
env:
- DEPS=locked
- php: 7.4snapshot
env:
- DEPS=latest

before_install:
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 2.1.3 - TBD
## 2.2.0 - 2019-12-03

### Added

- Nothing.
- Adds PHP 7.4 support.

### Changed

- Nothing.
- [#63](https://github.com/phly/keep-a-changelog/pull/63) adds support for symfony/console v5 releases.

### Deprecated

Expand Down
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,17 @@
"ocramius/package-versions": "^1.3",
"php-http/guzzle6-adapter": "^1.1",
"psr/event-dispatcher": "^1.0",
"symfony/console": "^3.4|^4.0"
"symfony/console": "^3.4 || ^4.0 || ^5.0"
},
"require-dev": {
"captainhook/plugin-composer": "^4.0",
"phpunit/phpunit": "^7.4",
"phpunit/phpunit": "^8.4.3",
"webimpress/coding-standard": "dev-master@dev",
"zendframework/zend-coding-standard": "2.0.0-alpha.3@alpha || ^2.0"
},
"conflict": {
"phpspec/prophecy": "<1.9.0"
},
"autoload": {
"psr-4": {
"Phly\\KeepAChangelog\\": "src/"
Expand All @@ -40,8 +43,8 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev",
"dev-develop": "2.2.x-dev"
"dev-master": "2.2.x-dev",
"dev-develop": "2.3.x-dev"
}
},
"bin": [
Expand Down
Loading

0 comments on commit 0083e36

Please sign in to comment.