| OLD | NEW |
| 1 ## 2.1.0 |
| 2 |
| 3 * Rewrite the parser for a 10x speed improvement. |
| 4 |
| 5 * Support anchors and aliases (`&foo` and `*foo`). |
| 6 |
| 7 * Support explicit tags (e.g. `!!str`). Note that user-defined tags are still |
| 8 not fully supported. |
| 9 |
| 10 * `%YAML` and `%TAG` directives are now parsed, although again user-defined tags |
| 11 are not fully supported. |
| 12 |
| 13 * `YamlScalar`, `YamlList`, and `YamlMap` now expose the styles in which they |
| 14 were written (for example plain vs folded, block vs flow). |
| 15 |
| 1 ## 2.0.1+1 | 16 ## 2.0.1+1 |
| 2 | 17 |
| 3 * Fix an import in a test. | 18 * Fix an import in a test. |
| 4 | 19 |
| 5 * Widen the version constraint on the `collection` package. | 20 * Widen the version constraint on the `collection` package. |
| 6 | 21 |
| 7 ## 2.0.1 | 22 ## 2.0.1 |
| 8 | 23 |
| 9 * Fix a few lingering references to the old `Span` class in documentation and | 24 * Fix a few lingering references to the old `Span` class in documentation and |
| 10 tests. | 25 tests. |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 75 |
| 61 ## 0.9.0+2 | 76 ## 0.9.0+2 |
| 62 | 77 |
| 63 * Ensure that maps are order-independent when used as map keys. | 78 * Ensure that maps are order-independent when used as map keys. |
| 64 | 79 |
| 65 ## 0.9.0+1 | 80 ## 0.9.0+1 |
| 66 | 81 |
| 67 * The `YamlMap` class is deprecated. In a future version, maps returned by | 82 * The `YamlMap` class is deprecated. In a future version, maps returned by |
| 68 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality | 83 `loadYaml` and `loadYamlStream` will be Dart `HashMap`s with a custom equality |
| 69 operation. | 84 operation. |
| OLD | NEW |