diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 6d3b9d7..dfd3ef0 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -22,4 +22,7 @@ ## v1.3.2 (2017-07-17) * Removed RequestListener -* Modify ListenerRegisterService Logic \ No newline at end of file +* Modify ListenerRegisterService Logic + +## v1.4.0 (2017-07-18) +* Add RequestServiceProvider and Compatible PSR-7 \ No newline at end of file diff --git a/src/Framework/Kernel.php b/src/Framework/Kernel.php index ebcc8fa..5002a3f 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.3.2'; + $this['version'] = 'v1.4.0'; $this['start_time'] = $start; self::$instance = $this; parent::__construct($values);