| OLD | NEW |
| 1 ## 2.1.1 |
| 2 |
| 3 * Properly scope `SourceSpan`s for scalar values surrounded by whitespace. |
| 4 |
| 1 ## 2.1.0 | 5 ## 2.1.0 |
| 2 | 6 |
| 3 * Rewrite the parser for a 10x speed improvement. | 7 * Rewrite the parser for a 10x speed improvement. |
| 4 | 8 |
| 5 * Support anchors and aliases (`&foo` and `*foo`). | 9 * Support anchors and aliases (`&foo` and `*foo`). |
| 6 | 10 |
| 7 * Support explicit tags (e.g. `!!str`). Note that user-defined tags are still | 11 * Support explicit tags (e.g. `!!str`). Note that user-defined tags are still |
| 8 not fully supported. | 12 not fully supported. |
| 9 | 13 |
| 10 * `%YAML` and `%TAG` directives are now parsed, although again user-defined tags | 14 * `%YAML` and `%TAG` directives are now parsed, although again user-defined tags |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 82 |
| 79 ## 0.9.0+2 | 83 ## 0.9.0+2 |
| 80 | 84 |
| 81 * Ensure that maps are order-independent when used as map keys. | 85 * Ensure that maps are order-independent when used as map keys. |
| 82 | 86 |
| 83 ## 0.9.0+1 | 87 ## 0.9.0+1 |
| 84 | 88 |
| 85 * The `YamlMap` class is deprecated. In a future version, maps returned by | 89 * The `YamlMap` class is deprecated. In a future version, maps returned by |
| 86 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality | 90 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality |
| 87 operation. | 91 operation. |
| OLD | NEW |