From 2edd95d360fb54980acb3bfbfb42110e8f2e8961 Mon Sep 17 00:00:00 2001 From: "nweiz@google.com" Date: Tue, 29 Jul 2014 02:13:51 +0000 Subject: [PATCH] Fix an import in yaml_node_wrapper_test. R=rnystrom@google.com TBR Review URL: https://codereview.chromium.org//423033002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@38657 260f80e4-7a28-3924-810f-c04153c831b5 --- pkg/yaml/CHANGELOG.md | 4 ++++ pkg/yaml/pubspec.yaml | 2 +- pkg/yaml/test/yaml_node_wrapper_test.dart | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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';