| OLD | NEW |
| 1 ## 1.1.0 | 1 ## 1.1.0 |
| 2 | 2 |
| 3 * Add new publicly-accessible constructors for `YamlNode` subclasses. These |
| 4 constructors make it possible to use the same API to access non-YAML data as |
| 5 YAML data. |
| 6 |
| 3 * Make `YamlException` inherit from source_map's [`SpanFormatException`][]. This | 7 * Make `YamlException` inherit from source_map's [`SpanFormatException`][]. This |
| 4 improves the error formatting and allows callers access to source range | 8 improves the error formatting and allows callers access to source range |
| 5 information. | 9 information. |
| 6 | 10 |
| 7 [SpanFormatException]: (http://www.dartdocs.org/documentation/source_maps/0.9.2/
index.html#source_maps/source_maps.SpanFormatException) | 11 [SpanFormatException]: (http://www.dartdocs.org/documentation/source_maps/0.9.2/
index.html#source_maps/source_maps.SpanFormatException) |
| 8 | 12 |
| 9 ## 1.0.0+1 | 13 ## 1.0.0+1 |
| 10 | 14 |
| 11 * Fix a variable name typo. | 15 * Fix a variable name typo. |
| 12 | 16 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 31 | 35 |
| 32 ## 0.9.0+2 | 36 ## 0.9.0+2 |
| 33 | 37 |
| 34 * Ensure that maps are order-independent when used as map keys. | 38 * Ensure that maps are order-independent when used as map keys. |
| 35 | 39 |
| 36 ## 0.9.0+1 | 40 ## 0.9.0+1 |
| 37 | 41 |
| 38 * The `YamlMap` class is deprecated. In a future version, maps returned by | 42 * The `YamlMap` class is deprecated. In a future version, maps returned by |
| 39 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality | 43 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality |
| 40 operation. | 44 operation. |
| OLD | NEW |