| OLD | NEW |
| 1 ## 0.13.2+1 |
| 2 |
| 3 * Print all lines of multi-line command descriptions. |
| 4 |
| 1 ## 0.13.2 | 5 ## 0.13.2 |
| 2 | 6 |
| 3 * Allow option values that look like options. This more closely matches the | 7 * Allow option values that look like options. This more closely matches the |
| 4 behavior of [`getopt`][getopt], the *de facto* standard for option parsing. | 8 behavior of [`getopt`][getopt], the *de facto* standard for option parsing. |
| 5 | 9 |
| 6 [getopt]: http://man7.org/linux/man-pages/man3/getopt.3.html | 10 [getopt]: http://man7.org/linux/man-pages/man3/getopt.3.html |
| 7 | 11 |
| 8 ## 0.13.1 | 12 ## 0.13.1 |
| 9 | 13 |
| 10 * Add `ArgParser.addSeparator()`. Separators allow users to group their options | 14 * Add `ArgParser.addSeparator()`. Separators allow users to group their options |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 84 |
| 81 ## 0.11.0 | 85 ## 0.11.0 |
| 82 | 86 |
| 83 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` | 87 * Move handling trailing options from `ArgParser.parse()` into `ArgParser` |
| 84 itself. This lets subcommands have different behavior for how they handle | 88 itself. This lets subcommands have different behavior for how they handle |
| 85 trailing options. | 89 trailing options. |
| 86 | 90 |
| 87 ## 0.10.0+2 | 91 ## 0.10.0+2 |
| 88 | 92 |
| 89 * Usage ignores hidden options when determining column widths. | 93 * Usage ignores hidden options when determining column widths. |
| OLD | NEW |