diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 0a12aef..a9b5244 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -64,4 +64,7 @@ ## v1.7.5 (2017-10-23) * Fixed bug when client register kernel listener -* Fixed bug when client for routerService dispatch \ No newline at end of file +* Fixed bug when client for routerService dispatch + +## v1.7.6 (2017-10-24) +* Fixed miss class load \ No newline at end of file diff --git a/src/Framework/Kernel.php b/src/Framework/Kernel.php index 4bde8e7..1373ad1 100644 --- a/src/Framework/Kernel.php +++ b/src/Framework/Kernel.php @@ -67,7 +67,7 @@ class Kernel extends Container public function __construct(array $values = []) { $start = microtime(true); - $this['version'] = 'v1.7.5'; + $this['version'] = 'v1.7.6'; $this['start_time'] = $start; self::$instance = $this; parent::__construct($values);