publish 0.0.2+2
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b1bfd05..cc48599 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,4 +14,9 @@
 * resolve [new Constructor] in comments
 * link to exported library in comment references
 * visually show library is deprecated
-* fixed one liner documentation
\ No newline at end of file
+* fixed one liner documentation
+
+##0.0.2+1
+ 
+ * add a --package-root option
+ * resource handler support for package root
\ No newline at end of file
diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart
index 38911e8..6617958 100644
--- a/lib/dartdoc.dart
+++ b/lib/dartdoc.dart
@@ -24,7 +24,7 @@
 
 const String NAME = 'dartdoc';
 // Update when pubspec version changes.
-const String VERSION = '0.0.2+1';
+const String VERSION = '0.0.2+2';
 
 final String defaultOutDir = 'doc${Platform.pathSeparator}api';
 
diff --git a/pubspec.yaml b/pubspec.yaml
index 0e67854..1ad532f 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: dartdoc
-version: 0.0.2+1
+version: 0.0.2+2
 author: Dart Team <misc@dartlang.org>
 description: A documentation generator for Dart.
 homepage: https://github.com/dart-lang/dartdoc
diff --git a/test/resource_loader_test.dart b/test/resource_loader_test.dart
index 2cb25c2..1f6ee71 100644
--- a/test/resource_loader_test.dart
+++ b/test/resource_loader_test.dart
@@ -4,7 +4,6 @@
 
 library dartdoc.resource_loader_test;
 
-import 'dart:async';
 import 'dart:io';
 
 import 'package:path/path.dart';