| OLD | NEW |
| 1 ## 0.13.1 |
| 2 |
| 3 * Add `ArgParser.addSeparator()` and `ArgParser.optionsAndSeparators`. |
| 4 Separators allow users to group their options in the usage text. |
| 5 |
| 1 ## 0.13.0 | 6 ## 0.13.0 |
| 2 | 7 |
| 3 * **Breaking change**: An option that allows multiple values will now | 8 * **Breaking change**: An option that allows multiple values will now |
| 4 automatically split apart comma-separated values. This can be controlled with | 9 automatically split apart comma-separated values. This can be controlled with |
| 5 the `splitCommas` option. | 10 the `splitCommas` option. |
| 6 | 11 |
| 7 ## 0.12.2+6 | 12 ## 0.12.2+6 |
| 8 | 13 |
| 9 * Remove the dependency on the `collection` package. | 14 * Remove the dependency on the `collection` package. |
| 10 | 15 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 73 |
| 69 ## 0.11.0 | 74 ## 0.11.0 |
| 70 | 75 |
| 71 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` | 76 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` |
| 72 itself. This lets subcommands have different behavior for how they handle | 77 itself. This lets subcommands have different behavior for how they handle |
| 73 trailing options. | 78 trailing options. |
| 74 | 79 |
| 75 ## 0.10.0+2 | 80 ## 0.10.0+2 |
| 76 | 81 |
| 77 * Usage ignores hidden options when determining column widths. | 82 * Usage ignores hidden options when determining column widths. |
| OLD | NEW |