Skip to content

Commit

Permalink
Bump up version to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Nov 5, 2017
1 parent c3af2ac commit f21c148
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
## v0.2.0 (2017-11-05)

In this release we have added 4 tools. These tools will make your code better :)

### Enhancements

- Add RedundantTernaryOperator ([#9](https://github.com/wata727/pahout/pull/9))
- Add DuplicateKey ([#12](https://github.com/wata727/pahout/pull/12))
- Add UnreachableCatch ([#13](https://github.com/wata727/pahout/pull/13))
- Add DuplicateCaseCondition ([#14](https://github.com/wata727/pahout/pull/14))

### BugFix

- Use Howdah for DuplicateKey ([#15](https://github.com/wata727/pahout/pull/15))

### Others

- CI Settings ([#1](https://github.com/wata727/pahout/pull/1))
- Fix tests ([#10](https://github.com/wata727/pahout/pull/10))
- Add parser for development ([#11](https://github.com/wata727/pahout/pull/11))

## v0.1.1 (2017-08-22)

Fix installation when using `composer global require`

## v0.1.0 (2017-08-21)

First release
2 changes: 1 addition & 1 deletion src/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

$check = new Check();

$app = new Application('Pahout', '0.1.1');
$app = new Application('Pahout', '0.2.0');
$app->add($check);
$app->setDefaultCommand($check->getName(), true);
$app->run();

0 comments on commit f21c148

Please sign in to comment.