Merge pull request #1184 from dart-lang/rev_dartdoc

rev dartdoc to 0.9.6+1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 267b6e1..5dbb7d2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+## 0.9.6+1
+* [health] remove an unneeded package dependency
+
 ## 0.9.6
 * [bug] fix enum indexes (#1176).
 * [enhancement] added support for crossdart. If there is a `crossdart.json`
@@ -6,7 +9,7 @@
 
 ## 0.9.5
 * [enhancement] support for `@example` tag to inject sample code into comments.
-  eg. `{@example core/ts/bootstrap/bootstrap.dart region='bootstrap'}`, where 
+  eg. `{@example core/ts/bootstrap/bootstrap.dart region='bootstrap'}`, where
   path is path to source in the package examples directory, and region is
   specified by `#docregion` and `#enddocregion` in the file.
 * [enhancement] do not document if there is a `@nodoc` in the doc comment.
@@ -43,7 +46,7 @@
 ## 0.9.0
 * **BREAKING** works with Dart SDK 1.14.0 and above
 * [health] use package resource
-* [enhancement] add support for packages with `_embedder.yaml`  
+* [enhancement] add support for packages with `_embedder.yaml`
 * [bug] fix generating docs when input == '.'
 * [bug] modify showing constants so that there is no double `const` shown in
   value.
diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart
index e9a14a4..7e00d1c 100644
--- a/lib/dartdoc.dart
+++ b/lib/dartdoc.dart
@@ -39,7 +39,7 @@
 
 const String name = 'dartdoc';
 // Update when pubspec version changes.
-const String version = '0.9.6';
+const String version = '0.9.6+1';
 
 final String defaultOutDir = p.join('doc', 'api');
 
diff --git a/pubspec.yaml b/pubspec.yaml
index 0e327b3..b41bef7 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
 name: dartdoc
 # Also update the `version` field in lib/dartdoc.dart.
-version: 0.9.6
+version: 0.9.6+1
 author: Dart Team <misc@dartlang.org>
 description: A documentation generator for Dart.
 homepage: https://github.com/dart-lang/dartdoc