Skip to content

Commit

Permalink
Update changelog to 4.0.0 🔖
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaeu committed May 12, 2017
1 parent 1f00b7b commit b1ebe73
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Expand Up @@ -4,12 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [0.4.0] - 2017-05-12

This comment has been minimized.

Copy link
@kingcrunch

kingcrunch Jun 11, 2017

Hi @mihaeu

Is it possible, that you missed to release 0.4.0?

### Added
- PHP 7.1 support
- add detection of instanceof comparison
- switch DSM column and row (like NDepend)

### Fixed
- add support for inner classes

## [0.3.1] - 2016-11-16
### Fixed
- default options like --help not working
Expand Down Expand Up @@ -38,7 +41,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- first tagged release
- uml, text, dsm and metrics command

[Unreleased]: https://github.com/mihaeu/dephpend/compare/0.3.1...HEAD
[Unreleased]: https://github.com/mihaeu/dephpend/compare/0.3.2...HEAD
[0.3.2]: https://github.com/mihaeu/dephpend/compare/0.3.1...0.3.2
[0.3.1]: https://github.com/mihaeu/dephpend/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/mihaeu/dephpend/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/mihaeu/dephpend/compare/0.1.0...0.2.0
4 changes: 2 additions & 2 deletions bin/dephpend
Expand Up @@ -23,13 +23,13 @@ if (file_exists(__DIR__.'/../vendor/autoload.php')) {
ini_set('xdebug.max_nesting_level', '3000');

$name = <<<EOT
_ _____ _ _ _____ _
_ _____ _ _ _____ _
| | | __ \| | | | __ \ | |
__| | ___| |__) | |__| | |__) |__ _ __ __| |
/ _` |/ _ \ ___/| __ | ___/ _ \ '_ \ / _` |
| (_| | __/ | | | | | | | __/ | | | (_| |
\__,_|\___|_| |_| |_|_| \___|_| |_|\__,_|
EOT;

$application = new Application($name, '0.3.1', new DI($internals));
$application = new Application($name, '0.4.0', new DI($internals));
$application->run();

0 comments on commit b1ebe73

Please sign in to comment.