| OLD | NEW |
| 1 ## 1.1.0 |
| 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 |
| 1 ## 1.0.0+1 | 7 ## 1.0.0+1 |
| 2 | 8 |
| 3 * Fix a variable name typo. | 9 * Fix a variable name typo. |
| 4 | 10 |
| 5 ## 1.0.0 | 11 ## 1.0.0 |
| 6 | 12 |
| 7 * **Backwards incompatibility**: The data structures returned by `loadYaml` and | 13 * **Backwards incompatibility**: The data structures returned by `loadYaml` and |
| 8 `loadYamlStream` are now immutable. | 14 `loadYamlStream` are now immutable. |
| 9 | 15 |
| 10 * **Backwards incompatibility**: The interface of the `YamlMap` class has | 16 * **Backwards incompatibility**: The interface of the `YamlMap` class has |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 29 |
| 24 ## 0.9.0+2 | 30 ## 0.9.0+2 |
| 25 | 31 |
| 26 * Ensure that maps are order-independent when used as map keys. | 32 * Ensure that maps are order-independent when used as map keys. |
| 27 | 33 |
| 28 ## 0.9.0+1 | 34 ## 0.9.0+1 |
| 29 | 35 |
| 30 * The `YamlMap` class is deprecated. In a future version, maps returned by | 36 * 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 | 37 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality |
| 32 operation. | 38 operation. |
| OLD | NEW |