OLD | NEW |
| 1 ## 0.13.3+5 |
| 2 |
| 3 * Make strong mode clean. |
| 4 |
1 ## 0.13.3+4 | 5 ## 0.13.3+4 |
2 | 6 |
3 * Use the proper `usage` getter in the README. | 7 * Use the proper `usage` getter in the README. |
4 | 8 |
5 ## 0.13.3+3 | 9 ## 0.13.3+3 |
6 | 10 |
7 * Add an explicit default value for the `allowTrailingOptions` parameter to `new | 11 * Add an explicit default value for the `allowTrailingOptions` parameter to `new |
8 ArgParser()`. This doesn't change the behavior at all; the option already | 12 ArgParser()`. This doesn't change the behavior at all; the option already |
9 defaulted to `false`, and passing in `null` still works. | 13 defaulted to `false`, and passing in `null` still works. |
10 | 14 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 * Widen the version constraint on the `collection` package. | 84 * Widen the version constraint on the `collection` package. |
81 | 85 |
82 ## 0.12.0+1 | 86 ## 0.12.0+1 |
83 | 87 |
84 * Remove the documentation link from the pubspec so this is linked to | 88 * Remove the documentation link from the pubspec so this is linked to |
85 pub.dartlang.org by default. | 89 pub.dartlang.org by default. |
86 | 90 |
87 ## 0.12.0 | 91 ## 0.12.0 |
88 | 92 |
89 * Removed public constructors for `ArgResults` and `Option`. | 93 * Removed public constructors for `ArgResults` and `Option`. |
90 | 94 |
91 * `ArgResults.wasParsed()` can be used to determine if an option was actually | 95 * `ArgResults.wasParsed()` can be used to determine if an option was actually |
92 parsed or the default value is being returned. | 96 parsed or the default value is being returned. |
93 | 97 |
94 * Replaced `isFlag` and `allowMultiple` fields in the `Option` class with a | 98 * Replaced `isFlag` and `allowMultiple` fields in the `Option` class with a |
95 three-value `OptionType` enum. | 99 three-value `OptionType` enum. |
96 | 100 |
97 * Options may define `valueHelp` which will then be shown in the usage. | 101 * Options may define `valueHelp` which will then be shown in the usage. |
98 | 102 |
99 ## 0.11.0 | 103 ## 0.11.0 |
100 | 104 |
101 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` | 105 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` |
102 itself. This lets subcommands have different behavior for how they handle | 106 itself. This lets subcommands have different behavior for how they handle |
103 trailing options. | 107 trailing options. |
104 | 108 |
105 ## 0.10.0+2 | 109 ## 0.10.0+2 |
106 | 110 |
107 * Usage ignores hidden options when determining column widths. | 111 * Usage ignores hidden options when determining column widths. |
OLD | NEW |