OLD | NEW |
---|---|
1 ## 0.11.1 | 1 ## 0.12.0 |
2 | 2 |
3 * `ArgResults.wasParsed()` can be used to determine if an option was actually | |
4 parsed or the default value is being returned. | |
5 | |
6 * Replaced `isFlag` and `allowMultiple` fields in `Option` with a three-value | |
nweiz
2014/07/14 21:22:34
"in `Option`" -> "in the `Option` class". This wil
Bob Nystrom
2014/07/15 21:05:23
Done.
| |
7 `OptionType` enum. | |
8 | |
3 * Options may define `valueHelp` which will then be shown in the usage. | 9 * Options may define `valueHelp` which will then be shown in the usage. |
4 | 10 |
5 ## 0.11.0 | 11 ## 0.11.0 |
6 | 12 |
7 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` | 13 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` |
8 itself. This lets subcommands have different behavior for how they handle | 14 itself. This lets subcommands have different behavior for how they handle |
9 trailing options. | 15 trailing options. |
10 | 16 |
11 ## 0.10.0+2 | 17 ## 0.10.0+2 |
12 | 18 |
13 * Usage ignores hidden options when determining column widths. | 19 * Usage ignores hidden options when determining column widths. |
OLD | NEW |