diff --git a/pkg/yaml/CHANGELOG.md b/pkg/yaml/CHANGELOG.md index 0c8ed7b8a6c..ee12bca94ba 100644 --- a/pkg/yaml/CHANGELOG.md +++ b/pkg/yaml/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.2 + +* Fix an import in a test. + ## 2.0.1 * Fix a few lingering references to the old `Span` class in documentation and diff --git a/pkg/yaml/pubspec.yaml b/pkg/yaml/pubspec.yaml index f9f784c59cf..afb8a0eea69 100644 --- a/pkg/yaml/pubspec.yaml +++ b/pkg/yaml/pubspec.yaml @@ -1,5 +1,5 @@ name: yaml -version: 2.0.1 +version: 2.0.2-dev author: "Dart Team " homepage: http://www.dartlang.org description: A parser for YAML. diff --git a/pkg/yaml/test/yaml_node_wrapper_test.dart b/pkg/yaml/test/yaml_node_wrapper_test.dart index 712eeee4712..2c41a6af367 100644 --- a/pkg/yaml/test/yaml_node_wrapper_test.dart +++ b/pkg/yaml/test/yaml_node_wrapper_test.dart @@ -4,7 +4,7 @@ library yaml.node_wrapper_test; -import 'package:source_maps/source_maps.dart'; +import 'package:source_span/source_span.dart'; import 'package:unittest/unittest.dart'; import 'package:yaml/yaml.dart';