publish 0.0.2+1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8b0106d..5e53f52 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,4 +5,13 @@
 * fixed resolving references in library comments
 * generate docs even when output directory exists
 * show inherited operators
-* visually indicate depricated api 
\ No newline at end of file
+* visually indicate depricated api 
+
+##0.0.2+1
+
+* handle packages that don't have a readme
+* fixed linking to references from other libraries in comments
+* 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
diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart
index c862a23..9be5d5b 100644
--- a/lib/dartdoc.dart
+++ b/lib/dartdoc.dart
@@ -23,7 +23,7 @@
 
 const String NAME = 'dartdoc';
 // Update when pubspec version changes.
-const String VERSION = '0.0.2';
+const String VERSION = '0.0.2+1';
 
 final String defaultOutDir = 'doc${Platform.pathSeparator}api';
 
diff --git a/pubspec.yaml b/pubspec.yaml
index 5a92e4f..0e67854 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: dartdoc
-version: 0.0.2
+version: 0.0.2+1
 author: Dart Team <misc@dartlang.org>
 description: A documentation generator for Dart.
 homepage: https://github.com/dart-lang/dartdoc