Publish `0.9.6`.

BUG=
R=keertip@google.com

Review URL: https://codereview.chromium.org//2080603003 .
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 026bcbe..267b6e1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 0.9.6
+* [bug] fix enum indexes (#1176).
+* [enhancement] added support for crossdart. If there is a `crossdart.json`
+  file in the input dir (which can be generated by Crossdart), it will use that
+  file to add links to `crossdart.info` in the source code block.
+
 ## 0.9.5
 * [enhancement] support for `@example` tag to inject sample code into comments.
   eg. `{@example core/ts/bootstrap/bootstrap.dart region='bootstrap'}`, where 
diff --git a/codereview.settings b/codereview.settings
new file mode 100644
index 0000000..d6d8a3b
--- /dev/null
+++ b/codereview.settings
@@ -0,0 +1,3 @@
+CODE_REVIEW_SERVER: https://codereview.chromium.org/
+VIEW_VC: https://github.com/dart-lang/dartdoc/commit/
+CC_LIST: reviews@dartlang.org
diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart
index 471d6ab..e9a14a4 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.5';
+const String version = '0.9.6';
 
 final String defaultOutDir = p.join('doc', 'api');
 
diff --git a/pubspec.yaml b/pubspec.yaml
index 7d7ec7a..78b56b5 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.5
+version: 0.9.6
 author: Dart Team <misc@dartlang.org>
 description: A documentation generator for Dart.
 homepage: https://github.com/dart-lang/dartdoc