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);