Skip to content

Commit

Permalink
Bump up version to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wata727 committed Jan 7, 2018
1 parent 5e6ab9c commit d9934ab
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
33 changes: 30 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,42 @@
## v0.3.0 (2017-12-21)
## v0.4.0 (2018-01-07)

We relaxed dependencies from this release. There is no change in the behavior of the analysis.
Annotations were introduced in this release. Please see the [README](https://github.com/wata727/pahout/blob/0.4.0/README.md#annotation) for details.

### Enhancements

- Introduce annotations to control hints ([#21](https://github.com/wata727/pahout/pull/21))
- Add AmbiguousReturnCheck ([#24](https://github.com/wata727/pahout/pull/24))
- NOTE: The tool name changed to LooseReturnCheck on [#28](https://github.com/wata727/pahout/pull/28)
- Add UnneededRegularExpression ([#25](https://github.com/wata727/pahout/pull/25))

### Changes

- Relax composer requirements ([#18](https://github.com/wata727/pahout/pull/18))
- Change the message of SyntaxError ([#23](https://github.com/wata727/pahout/pull/23))
- Revise messages and documentations ([#26](https://github.com/wata727/pahout/pull/26))
- Rename tool names ([#28](https://github.com/wata727/pahout/pull/28))

### Bugfix

- Handling array destructuring for DuplicateKey ([#27](https://github.com/wata727/pahout/pull/27))

### Others

- CI against PHP 7.2 ([#19](https://github.com/wata727/pahout/pull/19))
- CI against PHP 7.1.12 and 7.2 ([#20](https://github.com/wata727/pahout/pull/20))
- Revise README ([#22](https://github.com/wata727/pahout/pull/22))

## v0.3.0 (2017-12-21)

We relaxed dependencies from this release. There is no change in the behavior of the analysis.

### Enhancements

- Parses `.php-version` to change default php_version ([#16](https://github.com/wata727/pahout/pull/16))

### Changes

- Relax composer requirements ([#18](https://github.com/wata727/pahout/pull/18))

## v0.2.0 (2017-11-05)

In this release we have added 4 tools. These tools will make your code better :)
Expand Down
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.3.0');
$app = new Application('Pahout', '0.4.0');
$app->add($check);
$app->setDefaultCommand($check->getName(), true);
$app->run();

0 comments on commit d9934ab

Please sign in to comment.