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

Commit aaaa1e9

Browse files
committed
3.1.0 readiness
2 parents 5ef4add + 103fb70 commit aaaa1e9

File tree

3 files changed

+17
-27
lines changed

3 files changed

+17
-27
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,15 @@ env:
2323

2424
matrix:
2525
include:
26-
- php: 5.5
27-
env:
28-
- CS_CHECK=true
29-
- EXECUTE_DOC_CHECK=true
3026
- php: 5.6
3127
env:
3228
- TEST_COVERAGE=true
3329
- DEPLOY_DOCS="$(if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo -n 'true' ; else echo -n 'false' ; fi)"
3430
- PATH="$HOME/.local/bin:$PATH"
3531
- php: 7
32+
env:
33+
- CS_CHECK=true
34+
- php: 7.1
3635
- php: hhvm
3736
allow_failures:
3837
- php: hhvm

CHANGELOG.md

Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,22 @@
22

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

5-
## 3.1.0 - TBD
6-
7-
### Added
8-
9-
- Nothing.
10-
11-
### Deprecated
12-
13-
- Nothing.
14-
15-
### Removed
16-
17-
- Nothing.
18-
19-
### Fixed
20-
21-
- Nothing.
22-
23-
## 3.0.2 - TBD
5+
## 3.1.0 - 2016-12-19
246

257
### Added
268

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

12+
### Changes
13+
14+
- [#17](https://github.com/zendframework/zend-eventmanager/pull/17) makes a
15+
number of internal changes to how listeners are stored in order to improve
16+
performance, by as much as 10% in the scenario used in the MVC layer.
17+
18+
Additionally, it optimizes when the target and event arguments are injected
19+
into an event, eliminating that step entirely when either is unavailable.
20+
3021
### Deprecated
3122

3223
- Nothing.

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"prefer-stable": true,
1414
"extra": {
1515
"branch-alias": {
16-
"dev-master": "3.0-dev",
17-
"dev-develop": "3.1-dev"
16+
"dev-master": "3.1-dev",
17+
"dev-develop": "3.2-dev"
1818
}
1919
},
2020
"autoload": {
@@ -29,10 +29,10 @@
2929
}
3030
},
3131
"require": {
32-
"php": "^5.5 || ^7.0"
32+
"php": "^5.6 || ^7.0"
3333
},
3434
"require-dev": {
35-
"phpunit/PHPUnit": "~4.0",
35+
"phpunit/PHPUnit": "^5.6",
3636
"athletic/athletic": "^0.1",
3737
"zendframework/zend-stdlib": "^2.7.3 || ^3.0",
3838
"container-interop/container-interop": "^1.1.0",

0 commit comments

Comments
 (0)