bump to 0.6.2
Closes #879

Squashed commit of the following:

commit 3888d2ea7c3d56affb44de522dd972d2efc21256
Author: Seth Ladd <sethladd@google.com>
Date:   Fri Aug 28 14:07:31 2015 -0700

    bump to 0.6.2
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a8395a8..6fd1383 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## 0.6.2
+* Instructions on contributing moved to CONTRIBUTOR.md
+* Fixed bug with doc comment with name in both current and imported
+  library might be incorrectly linked
+* Now linking to detail pages for inherited methods, operators, properties
+* Strike-through deprecated names more often (e.g. on the sidebar)
+
 ## 0.6.1
 * Removed the `--package-root` option. Dartdoc now uses the `--input` flag as
   the place to start looking for an analysis root. This better supports the
diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart
index c1d260c..730b999 100644
--- a/lib/dartdoc.dart
+++ b/lib/dartdoc.dart
@@ -35,7 +35,7 @@
 
 const String name = 'dartdoc';
 // Update when pubspec version changes.
-const String version = '0.6.1';
+const String version = '0.6.2';
 
 final String defaultOutDir = 'doc${Platform.pathSeparator}api';
 
diff --git a/pubspec.yaml b/pubspec.yaml
index f4158d4..b48ce99 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
 name: dartdoc
 # Also update the `version` field in lib/dartdoc.dart.
-version: 0.6.1
+version: 0.6.2
 author: Dart Team <misc@dartlang.org>
 description: A documentation generator for Dart.
 homepage: https://github.com/dart-lang/dartdoc