Skip to content

Ver 2.1.0

Compare
Choose a tag to compare
@mayuki mayuki released this 14 Feb 09:36
· 269 commits to master since this release
36e78db

Changes

Fixes

  • #32 Console app that contains a single command doesn't show the detail for help.

Breaking changes

help and version command is no longer supported if an app has only one command.

Use -help or -version option instead of those commands.

$ myapp -help
Usage: myapp
...

$ myapp -version
1.0.0

If an app provides one or more named commands, help command is still available.

$ myapp help
Usage: myapp <Command>

Commands:
  foo
  bar

$ myapp help foo
Usage: myapp foo
...