| OLD | NEW |
| 1 # 1.1.2 |
| 2 |
| 3 * Fixed validation in `SourceSpanWithContext` to allow multiple occurrences of |
| 4 `text` within `context`. |
| 5 |
| 1 # 1.1.1 | 6 # 1.1.1 |
| 2 | 7 |
| 3 * Fixed `FileSpan`'s context to include the full span text, not just the first | 8 * Fixed `FileSpan`'s context to include the full span text, not just the first |
| 4 line of it. | 9 line of it. |
| 5 | 10 |
| 6 # 1.1.0 | 11 # 1.1.0 |
| 7 | 12 |
| 8 * Added `SourceSpanWithContext`: a span that also includes the full line of text | 13 * Added `SourceSpanWithContext`: a span that also includes the full line of text |
| 9 that contains the span. | 14 that contains the span. |
| 10 | 15 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 `SourceSpan.message` and `SourceFile.message`, respectively. Rather than | 55 `SourceSpan.message` and `SourceFile.message`, respectively. Rather than |
| 51 taking both a `useColor` and a `color` parameter, they now take a single | 56 taking both a `useColor` and a `color` parameter, they now take a single |
| 52 `color` parameter that controls both whether and which color is used. | 57 `color` parameter that controls both whether and which color is used. |
| 53 | 58 |
| 54 * `Span.isIdentifier` has been removed. This property doesn't make sense outside | 59 * `Span.isIdentifier` has been removed. This property doesn't make sense outside |
| 55 of a source map context. | 60 of a source map context. |
| 56 | 61 |
| 57 * `SourceFileSegment` has been removed. This class wasn't widely used and was | 62 * `SourceFileSegment` has been removed. This class wasn't widely used and was |
| 58 inconsistent in its choice of which parameters were considered relative and | 63 inconsistent in its choice of which parameters were considered relative and |
| 59 which absolute. | 64 which absolute. |
| OLD | NEW |