| OLD | NEW |
| 1 # 1.2.3 |
| 2 |
| 3 * Fix a bug where a point span at the end of a file without a trailing newline |
| 4 would be printed incorrectly. |
| 5 |
| 1 # 1.2.2 | 6 # 1.2.2 |
| 2 | 7 |
| 3 * Allow `SourceSpanException.message`, `SourceSpanFormatException.source`, and | 8 * Allow `SourceSpanException.message`, `SourceSpanFormatException.source`, and |
| 4 `SourceSpanWithContext.context` to be overridden in strong mode. | 9 `SourceSpanWithContext.context` to be overridden in strong mode. |
| 5 | 10 |
| 6 # 1.2.1 | 11 # 1.2.1 |
| 7 | 12 |
| 8 * Fix the declared type of `FileSpan.start` and `FileSpan.end`. In 1.2.0 these | 13 * Fix the declared type of `FileSpan.start` and `FileSpan.end`. In 1.2.0 these |
| 9 were mistakenly changed from `FileLocation` to `SourceLocation`. | 14 were mistakenly changed from `FileLocation` to `SourceLocation`. |
| 10 | 15 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 `SourceSpan.message` and `SourceFile.message`, respectively. Rather than | 98 `SourceSpan.message` and `SourceFile.message`, respectively. Rather than |
| 94 taking both a `useColor` and a `color` parameter, they now take a single | 99 taking both a `useColor` and a `color` parameter, they now take a single |
| 95 `color` parameter that controls both whether and which color is used. | 100 `color` parameter that controls both whether and which color is used. |
| 96 | 101 |
| 97 * `Span.isIdentifier` has been removed. This property doesn't make sense outside | 102 * `Span.isIdentifier` has been removed. This property doesn't make sense outside |
| 98 of a source map context. | 103 of a source map context. |
| 99 | 104 |
| 100 * `SourceFileSegment` has been removed. This class wasn't widely used and was | 105 * `SourceFileSegment` has been removed. This class wasn't widely used and was |
| 101 inconsistent in its choice of which parameters were considered relative and | 106 inconsistent in its choice of which parameters were considered relative and |
| 102 which absolute. | 107 which absolute. |
| OLD | NEW |