| OLD | NEW |
| 1 ## 1.0.0+1 |
| 2 |
| 3 * Fix a variable name typo. |
| 4 |
| 1 ## 1.0.0 | 5 ## 1.0.0 |
| 2 | 6 |
| 3 * **Backwards incompatibility**: The data structures returned by `loadYaml` and | 7 * **Backwards incompatibility**: The data structures returned by `loadYaml` and |
| 4 `loadYamlStream` are now immutable. | 8 `loadYamlStream` are now immutable. |
| 5 | 9 |
| 6 * **Backwards incompatibility**: The interface of the `YamlMap` class has | 10 * **Backwards incompatibility**: The interface of the `YamlMap` class has |
| 7 changed substantially in numerous ways. External users may no longer construct | 11 changed substantially in numerous ways. External users may no longer construct |
| 8 their own instances. | 12 their own instances. |
| 9 | 13 |
| 10 * Maps and lists returned by `loadYaml` and `loadYamlStream` now contain | 14 * Maps and lists returned by `loadYaml` and `loadYamlStream` now contain |
| 11 information about their source locations. | 15 information about their source locations. |
| 12 | 16 |
| 13 * A new `loadYamlNode` function returns the source location of top-level scalars | 17 * A new `loadYamlNode` function returns the source location of top-level scalars |
| 14 as well. | 18 as well. |
| 15 | 19 |
| 16 ## 0.10.0 | 20 ## 0.10.0 |
| 17 | 21 |
| 18 * Improve error messages when a file fails to parse. | 22 * Improve error messages when a file fails to parse. |
| 19 | 23 |
| 20 ## 0.9.0+2 | 24 ## 0.9.0+2 |
| 21 | 25 |
| 22 * Ensure that maps are order-independent when used as map keys. | 26 * Ensure that maps are order-independent when used as map keys. |
| 23 | 27 |
| 24 ## 0.9.0+1 | 28 ## 0.9.0+1 |
| 25 | 29 |
| 26 * The `YamlMap` class is deprecated. In a future version, maps returned by | 30 * The `YamlMap` class is deprecated. In a future version, maps returned by |
| 27 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality | 31 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality |
| 28 operation. | 32 operation. |
| OLD | NEW |