OLD | NEW |
| 1 ## 0.12.2+1 |
| 2 |
| 3 * Fix the built-in `help` command for `CommandRunner`. |
| 4 |
1 ## 0.12.2 | 5 ## 0.12.2 |
2 | 6 |
3 * Add `CommandRunner` and `Command` classes which make it easy to build a | 7 * Add `CommandRunner` and `Command` classes which make it easy to build a |
4 command-based command-line application. | 8 command-based command-line application. |
5 | 9 |
6 * Add an `ArgResults.arguments` field, which contains the original argument list
. | 10 * Add an `ArgResults.arguments` field, which contains the original argument list
. |
7 | 11 |
8 ## 0.12.1 | 12 ## 0.12.1 |
9 | 13 |
10 * Replace `ArgParser.getUsage()` with `ArgParser.usage`, a getter. | 14 * Replace `ArgParser.getUsage()` with `ArgParser.usage`, a getter. |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 37 |
34 ## 0.11.0 | 38 ## 0.11.0 |
35 | 39 |
36 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` | 40 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` |
37 itself. This lets subcommands have different behavior for how they handle | 41 itself. This lets subcommands have different behavior for how they handle |
38 trailing options. | 42 trailing options. |
39 | 43 |
40 ## 0.10.0+2 | 44 ## 0.10.0+2 |
41 | 45 |
42 * Usage ignores hidden options when determining column widths. | 46 * Usage ignores hidden options when determining column widths. |
OLD | NEW |