diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ef3fb1..7e6944b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `phpunit-watcher` will be documented in this file +## 1.3.6 - 2017-08-29 + +- fix typing in interactive mode + ## 1.3.5 - 2017-08-29 - add back version number diff --git a/src/ConsoleApplication.php b/src/ConsoleApplication.php index 6d262e1..3ee3274 100644 --- a/src/ConsoleApplication.php +++ b/src/ConsoleApplication.php @@ -8,7 +8,7 @@ class ConsoleApplication extends Application { public function __construct() { - parent::__construct('PHPUnit Watcher', '1.3.5'); + parent::__construct('PHPUnit Watcher', '1.3.6'); $this->add(new WatcherCommand()); }