Merge pull request #600 from keertip/publish
publish package
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cc48599..9eaf80c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -16,7 +16,18 @@
* visually show library is deprecated
* fixed one liner documentation
-##0.0.2+1
+##0.0.2+2
- * add a --package-root option
- * resource handler support for package root
\ No newline at end of file
+* add a --package-root option
+* resource handler support for package root
+
+##0.0.2+3
+
+* do not drop brackets in comments
+* replace ':' in library names with '-'
+* support multiple anonymous libraries
+* show generic information for classes
+* signature of method on same line as name
+* error if command line argument is not recognized
+* fixed href for property accesssor
+* fixed generation of docs for exported libraries
diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart
index 554b84b..430be19 100644
--- a/lib/dartdoc.dart
+++ b/lib/dartdoc.dart
@@ -25,7 +25,7 @@
const String name = 'dartdoc';
// Update when pubspec version changes.
-const String version = '0.0.2+2';
+const String version = '0.0.2+3';
final String defaultOutDir = 'doc${Platform.pathSeparator}api';
diff --git a/pubspec.yaml b/pubspec.yaml
index e1928c5..93e3242 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
name: dartdoc
-version: 0.0.2+2
+version: 0.0.2+3
author: Dart Team <misc@dartlang.org>
description: A documentation generator for Dart.
homepage: https://github.com/dart-lang/dartdoc