From f18293a0834830fabbca85b89b92d9734f264e55 Mon Sep 17 00:00:00 2001 From: xujiajun Date: Wed, 19 Jul 2017 13:57:44 +0800 Subject: [PATCH] v1.4.1 --- docs/CHANGELOG.md | 5 ++++- src/Framework/Kernel.php | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index dfd3ef0..b6a04c1 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -25,4 +25,7 @@ * Modify ListenerRegisterService Logic ## v1.4.0 (2017-07-18) -* Add RequestServiceProvider and Compatible PSR-7 \ No newline at end of file +* Add RequestServiceProvider and Compatible PSR-7 + +## v1.4.1 (2017-07-19) +* Add ResponseAdapter and Compatible PSR-7 \ No newline at end of file diff --git a/src/Framework/Kernel.php b/src/Framework/Kernel.php index 5002a3f..c7a2234 100644 --- a/src/Framework/Kernel.php +++ b/src/Framework/Kernel.php @@ -99,7 +99,7 @@ class Kernel extends Container public function __construct(array $values = []) { $start = microtime(true); - $this['version'] = 'v1.4.0'; + $this['version'] = 'v1.4.1'; $this['start_time'] = $start; self::$instance = $this; parent::__construct($values);