| OLD | NEW |
| 1 # 0.2.1 | 1 # 0.2.1 |
| 2 | 2 |
| 3 * `--version` command line argument (#240). | 3 * `--version` command line argument (#240). |
| 4 * Split the first `.` in a method chain if the target splits (#255). | 4 * Split the first `.` in a method chain if the target splits (#255). |
| 5 * Don't collapse states that differ by unbound rule constraints (#424). | 5 * Don't collapse states that differ by unbound rule constraints (#424). |
| 6 * Better handling for functions in method chains (#367, #398). | 6 * Better handling for functions in method chains (#367, #398). |
| 7 * Better handling of large parameter metadata annotations (#387, #444). | 7 * Better handling of large parameter metadata annotations (#387, #444). |
| 8 * Smarter splitting around collections in named parameters (#394). | 8 * Smarter splitting around collections in named parameters (#394). |
| 9 * Split calls if properties in a chain split (#399). | 9 * Split calls if properties in a chain split (#399). |
| 10 * Don't allow splitting inside empty functions (#404). | 10 * Don't allow splitting inside empty functions (#404). |
| 11 * Consider a rule live if it constrains a rule in the overflow line (#407). | 11 * Consider a rule live if it constrains a rule in the overflow line (#407). |
| 12 * Allow splitting in prefix expressions (#410). | 12 * Allow splitting in prefix expressions (#410). |
| 13 * Correctly constrain collections in argument lists (#420, #463, #465). | 13 * Correctly constrain collections in argument lists (#420, #463, #465). |
| 14 * Better indentation of collection literals (#421, #469). | 14 * Better indentation of collection literals (#421, #469). |
| 15 * Only show a hidden directory once in the output (#428). | 15 * Only show a hidden directory once in the output (#428). |
| 16 * Allow splitting between type and variable name (#429, #439, #454). | 16 * Allow splitting between type and variable name (#429, #439, #454). |
| 17 * Better indentation for binary operators in `=>` bodies (#434. |
| 17 * Tweak splitting around assignment (#436, #437). | 18 * Tweak splitting around assignment (#436, #437). |
| 18 * Indent multi-line collections in default values (#441). | 19 * Indent multi-line collections in default values (#441). |
| 19 * Don't drop metadata on part directives (#443). | 20 * Don't drop metadata on part directives (#443). |
| 20 * Handle `if` statements without curly bodies better (#448). | 21 * Handle `if` statements without curly bodies better (#448). |
| 21 * Handle loop statements without curly bodies better (#449). | 22 * Handle loop statements without curly bodies better (#449). |
| 22 * Allow splitting before `get` and `set` (#462). | 23 * Allow splitting before `get` and `set` (#462). |
| 23 * Add `--indent` to specify leading indent (#464). | 24 * Add `--indent` to specify leading indent (#464). |
| 24 * Ensure collection elements line split separately (#474). | 25 * Ensure collection elements line split separately (#474). |
| 25 * Handle index expressions in the middle of call chains. | 26 * Handle index expressions in the middle of call chains. |
| 26 * Optimize splitting lines with many rules. | 27 * Optimize splitting lines with many rules. |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 | 152 |
| 152 # 0.1.2 | 153 # 0.1.2 |
| 153 | 154 |
| 154 * Move split conditional operators to the beginning of the next line. | 155 * Move split conditional operators to the beginning of the next line. |
| 155 | 156 |
| 156 # 0.1.1 | 157 # 0.1.1 |
| 157 | 158 |
| 158 * Support formatting enums (#120). | 159 * Support formatting enums (#120). |
| 159 * Handle Windows line endings in multiline strings (#126). | 160 * Handle Windows line endings in multiline strings (#126). |
| 160 * Increase nesting for conditional operators (#122). | 161 * Increase nesting for conditional operators (#122). |
| OLD | NEW |