| OLD | NEW |
| 1 # 1.1.4 |
| 2 |
| 3 * Fixed another case in which `FileSpan.union` could throw an exception for |
| 4 external implementations of `FileSpan`. |
| 5 |
| 1 # 1.1.3 | 6 # 1.1.3 |
| 2 | 7 |
| 3 * `FileSpan.compareTo`, `FileSpan.==`, `FileSpan.union`, and `FileSpan.expand` | 8 * `FileSpan.compareTo`, `FileSpan.==`, `FileSpan.union`, and `FileSpan.expand` |
| 4 no longer throw exceptions for external implementations of `FileSpan`. | 9 no longer throw exceptions for external implementations of `FileSpan`. |
| 5 | 10 |
| 6 * `FileSpan.hashCode` now fully agrees with `FileSpan.==`. | 11 * `FileSpan.hashCode` now fully agrees with `FileSpan.==`. |
| 7 | 12 |
| 8 # 1.1.2 | 13 # 1.1.2 |
| 9 | 14 |
| 10 * Fixed validation in `SourceSpanWithContext` to allow multiple occurrences of | 15 * Fixed validation in `SourceSpanWithContext` to allow multiple occurrences of |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 `SourceSpan.message` and `SourceFile.message`, respectively. Rather than | 67 `SourceSpan.message` and `SourceFile.message`, respectively. Rather than |
| 63 taking both a `useColor` and a `color` parameter, they now take a single | 68 taking both a `useColor` and a `color` parameter, they now take a single |
| 64 `color` parameter that controls both whether and which color is used. | 69 `color` parameter that controls both whether and which color is used. |
| 65 | 70 |
| 66 * `Span.isIdentifier` has been removed. This property doesn't make sense outside | 71 * `Span.isIdentifier` has been removed. This property doesn't make sense outside |
| 67 of a source map context. | 72 of a source map context. |
| 68 | 73 |
| 69 * `SourceFileSegment` has been removed. This class wasn't widely used and was | 74 * `SourceFileSegment` has been removed. This class wasn't widely used and was |
| 70 inconsistent in its choice of which parameters were considered relative and | 75 inconsistent in its choice of which parameters were considered relative and |
| 71 which absolute. | 76 which absolute. |
| OLD | NEW |