| OLD | NEW |
| 1 ## 2.0.0 |
| 2 |
| 3 * Switch from `source_maps`' `Span` class to `source_span`'s `SourceSpan` class. |
| 4 |
| 5 * For consistency with `source_span` and `string_scanner`, all `sourceName` |
| 6 parameters have been renamed to `sourceUrl`. They now accept Urls as well as |
| 7 Strings. |
| 8 |
| 1 ## 1.1.1 | 9 ## 1.1.1 |
| 2 | 10 |
| 3 * Fix broken type arguments that caused breakage on dart2js. | 11 * Fix broken type arguments that caused breakage on dart2js. |
| 4 | 12 |
| 5 * Fix an analyzer warning in `yaml_node_wrapper.dart`. | 13 * Fix an analyzer warning in `yaml_node_wrapper.dart`. |
| 6 | 14 |
| 7 ## 1.1.0 | 15 ## 1.1.0 |
| 8 | 16 |
| 9 * Add new publicly-accessible constructors for `YamlNode` subclasses. These | 17 * Add new publicly-accessible constructors for `YamlNode` subclasses. These |
| 10 constructors make it possible to use the same API to access non-YAML data as | 18 constructors make it possible to use the same API to access non-YAML data as |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 | 49 |
| 42 ## 0.9.0+2 | 50 ## 0.9.0+2 |
| 43 | 51 |
| 44 * Ensure that maps are order-independent when used as map keys. | 52 * Ensure that maps are order-independent when used as map keys. |
| 45 | 53 |
| 46 ## 0.9.0+1 | 54 ## 0.9.0+1 |
| 47 | 55 |
| 48 * The `YamlMap` class is deprecated. In a future version, maps returned by | 56 * The `YamlMap` class is deprecated. In a future version, maps returned by |
| 49 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality | 57 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality |
| 50 operation. | 58 operation. |
| OLD | NEW |