Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
3.1.0 readiness
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Dec 19, 2016
2 parents 3b884eb + 103fb70 commit c3bce7b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 27 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,15 @@ env:

matrix:
include:
- php: 5.5
env:
- CS_CHECK=true
- EXECUTE_DOC_CHECK=true
- php: 5.6
env:
- TEST_COVERAGE=true
- DEPLOY_DOCS="$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)"
- PATH="$HOME/.local/bin:$PATH"
- php: 7
env:
- CS_CHECK=true
- php: 7.1
- php: hhvm
allow_failures:
- php: hhvm
Expand Down
29 changes: 10 additions & 19 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,22 @@

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

## 3.1.0 - TBD

### Added

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- Nothing.

## 3.0.2 - TBD
## 3.1.0 - 2016-12-19

### Added

- [#26](https://github.com/zendframework/zend-eventmanager/pull/26) publishes
the documentation to https://zendframework.github.io/zend-eventmanager/

### Changes

- [#17](https://github.com/zendframework/zend-eventmanager/pull/17) makes a
number of internal changes to how listeners are stored in order to improve
performance, by as much as 10% in the scenario used in the MVC layer.

Additionally, it optimizes when the target and event arguments are injected
into an event, eliminating that step entirely when either is unavailable.

### Deprecated

- Nothing.
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "3.0-dev",
"dev-develop": "3.1-dev"
"dev-master": "3.1-dev",
"dev-develop": "3.2-dev"
}
},
"autoload": {
Expand All @@ -29,10 +29,10 @@
}
},
"require": {
"php": "^5.5 || ^7.0"
"php": "^5.6 || ^7.0"
},
"require-dev": {
"phpunit/PHPUnit": "~4.0",
"phpunit/PHPUnit": "^5.6",
"athletic/athletic": "^0.1",
"zendframework/zend-stdlib": "^2.7.3 || ^3.0",
"container-interop/container-interop": "^1.1.0",
Expand Down

0 comments on commit c3bce7b

Please sign in to comment.