| OLD | NEW |
| 1 ## 0.12.2 | 1 ## 0.12.2 |
| 2 | 2 |
| 3 * Add `CommandRunner` and `Command` classes which make it easy to build a |
| 4 command-based command-line application. |
| 5 |
| 3 * Add an `ArgResults.arguments` field, which contains the original argument list
. | 6 * Add an `ArgResults.arguments` field, which contains the original argument list
. |
| 4 | 7 |
| 5 ## 0.12.1 | 8 ## 0.12.1 |
| 6 | 9 |
| 7 * Replace `ArgParser.getUsage()` with `ArgParser.usage`, a getter. | 10 * Replace `ArgParser.getUsage()` with `ArgParser.usage`, a getter. |
| 8 `ArgParser.getUsage()` is now deprecated, to be removed in args version 1.0.0. | 11 `ArgParser.getUsage()` is now deprecated, to be removed in args version 1.0.0. |
| 9 | 12 |
| 10 ## 0.12.0+2 | 13 ## 0.12.0+2 |
| 11 | 14 |
| 12 * Widen the version constraint on the `collection` package. | 15 * Widen the version constraint on the `collection` package. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 30 | 33 |
| 31 ## 0.11.0 | 34 ## 0.11.0 |
| 32 | 35 |
| 33 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` | 36 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` |
| 34 itself. This lets subcommands have different behavior for how they handle | 37 itself. This lets subcommands have different behavior for how they handle |
| 35 trailing options. | 38 trailing options. |
| 36 | 39 |
| 37 ## 0.10.0+2 | 40 ## 0.10.0+2 |
| 38 | 41 |
| 39 * Usage ignores hidden options when determining column widths. | 42 * Usage ignores hidden options when determining column widths. |
| OLD | NEW |