From 69925b1f96e0ac3b2d93da8e837eaa0aca3062a1 Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Mon, 19 Dec 2016 15:34:37 -0600 Subject: [PATCH 1/3] Updated requirements - PHP: require 5.6 as minimum supported version - PHPUnit: bump to ^5.6 - Update travis to test 7.1, but remove 5.5 testing --- .travis.yml | 7 +++---- composer.json | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 99239b0..50063c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/composer.json b/composer.json index c1926e4..01a990e 100644 --- a/composer.json +++ b/composer.json @@ -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", From 815c5dcfe5ec86ead05566a6532afbb036874c82 Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Mon, 19 Dec 2016 15:46:55 -0600 Subject: [PATCH 2/3] Bumped branch aliases - dev-master => 3.1-dev - dev-develop => 3.2-dev --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 01a990e..d2dd557 100644 --- a/composer.json +++ b/composer.json @@ -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": { From 103fb70d28e45d8faa59f81ef92057d6ef928b6e Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Mon, 19 Dec 2016 15:40:08 -0600 Subject: [PATCH 3/3] Added CHANGELOG for 3.1.0 --- CHANGELOG.md | 29 ++++++++++------------------- 1 file changed, 10 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28bba02..aa9a2e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.