diff --git a/CHANGELOG.md b/CHANGELOG.md index a7a010c..32b44a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file, in reverse chronological order by release. -## 2.7.1 - TBD +## 2.7.1 - 2016-04-08 ### Added @@ -18,7 +18,8 @@ All notable changes to this project will be documented in this file, in reverse ### Fixed -- Nothing. +- This release removes the erroneous calls to `getViewHelperConfig()` in the + `ConfigProvider` and `Module` classes. ## 2.7.0 - 2016-04-08 diff --git a/src/ConfigProvider.php b/src/ConfigProvider.php index 283430b..a0508df 100644 --- a/src/ConfigProvider.php +++ b/src/ConfigProvider.php @@ -18,7 +18,6 @@ public function __invoke() { return [ 'dependencies' => $this->getDependencyConfig(), - 'view_helpers' => $this->getViewHelperConfig(), ]; } diff --git a/src/Module.php b/src/Module.php index 5d38dda..0dc78f0 100644 --- a/src/Module.php +++ b/src/Module.php @@ -19,7 +19,6 @@ public function getConfig() $provider = new ConfigProvider(); return [ 'service_manager' => $provider->getDependencyConfig(), - 'view_helpers' => $provider->getViewHelperConfig(), ]; } }