| OLD | NEW |
| 1 ## 1.1.0 |
| 2 |
| 3 * Make `YamlException` inherit from source_map's [`SpanFormatException`][]. This |
| 4 improves the error formatting and allows callers access to source range |
| 5 information. |
| 6 |
| 7 [SpanFormatException]: (http://www.dartdocs.org/documentation/source_maps/0.9.2/
index.html#source_maps/source_maps.SpanFormatException) |
| 8 |
| 1 ## 1.0.0+1 | 9 ## 1.0.0+1 |
| 2 | 10 |
| 3 * Fix a variable name typo. | 11 * Fix a variable name typo. |
| 4 | 12 |
| 5 ## 1.0.0 | 13 ## 1.0.0 |
| 6 | 14 |
| 7 * **Backwards incompatibility**: The data structures returned by `loadYaml` and | 15 * **Backwards incompatibility**: The data structures returned by `loadYaml` and |
| 8 `loadYamlStream` are now immutable. | 16 `loadYamlStream` are now immutable. |
| 9 | 17 |
| 10 * **Backwards incompatibility**: The interface of the `YamlMap` class has | 18 * **Backwards incompatibility**: The interface of the `YamlMap` class has |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 31 |
| 24 ## 0.9.0+2 | 32 ## 0.9.0+2 |
| 25 | 33 |
| 26 * Ensure that maps are order-independent when used as map keys. | 34 * Ensure that maps are order-independent when used as map keys. |
| 27 | 35 |
| 28 ## 0.9.0+1 | 36 ## 0.9.0+1 |
| 29 | 37 |
| 30 * The `YamlMap` class is deprecated. In a future version, maps returned by | 38 * The `YamlMap` class is deprecated. In a future version, maps returned by |
| 31 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality | 39 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality |
| 32 operation. | 40 operation. |
| OLD | NEW |