format with 1.12-dev.5.9
Closes #863

Squashed commit of the following:

commit b388ca7327cae90c7f3c6deb7edddc59a6253ee0
Author: Seth Ladd <sethladd@google.com>
Date:   Mon Aug 24 16:32:31 2015 -0700

    format with 1.12-dev.5.9

commit 92d1368ab97ad382c62c131f92e47e42183d635f
Author: Seth Ladd <sethladd@google.com>
Date:   Mon Aug 24 16:24:23 2015 -0700

    bump to 0.6.1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 88ab361..a8395a8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,12 @@
-## unreleased
+## 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
   `.packages` file and use cases where dartdoc is invoked from locations other
   than the project directory.
+* Search box displays message when it fails to load its index
+* Changed message printed when dartdoc finishes, pointing to path instead of URI
+* Reduced color saturation in header and links
+* Improved display of getters and setters on property pages
 
 ## 0.6.0+1
 * [bug] fix for getting uri for sources in lib folder
diff --git a/lib/dartdoc.dart b/lib/dartdoc.dart
index af80783..275a482 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.0+1';
+const String version = '0.6.1';
 
 final String defaultOutDir = 'doc${Platform.pathSeparator}api';
 
diff --git a/pubspec.yaml b/pubspec.yaml
index f931c4f..f4158d4 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.0+1
+version: 0.6.1
 author: Dart Team <misc@dartlang.org>
 description: A documentation generator for Dart.
 homepage: https://github.com/dart-lang/dartdoc
diff --git a/test_package/lib/fake.dart b/test_package/lib/fake.dart
index 62138aa..96d35cf 100644
--- a/test_package/lib/fake.dart
+++ b/test_package/lib/fake.dart
@@ -129,7 +129,6 @@
 /// A super class, with many powers. Link to [Apple] from another library.
 @deprecated
 class SuperAwesomeClass {
-
   /// In the super class.
   List<String> powers;
 
@@ -154,7 +153,8 @@
 ///
 /// The rest of this is not in the first paragraph.
 @Annotation('value')
-class LongFirstLine extends SuperAwesomeClass with MixMeIn
+class LongFirstLine extends SuperAwesomeClass
+    with MixMeIn
     implements Interface, AnotherInterface {
   static const THING = 'yup';
   static const int ANSWER = 42;
@@ -342,7 +342,8 @@
 ///
 /// Check out the [number] parameter. It's the first one.
 String functionWithFunctionParameters(int number, void thing(one, two),
-    String string, Future asyncThing(three, four, five, six, seven)) => null;
+        String string, Future asyncThing(three, four, five, six, seven)) =>
+    null;
 
 /// These are code syntaxes: [:true:] and [:false:]
 const testingCodeSyntaxInOneLiners = 'fantastic';
@@ -352,7 +353,6 @@
 
 /// Tests a single field with explict getter and setter.
 class WithGetterAndSetter {
-
   /// Returns a length.
   ///
   /// Throws some exception if used in the fourth dimension.
@@ -412,7 +412,6 @@
 
 /// Testing if docs for inherited method are correct.
 class SubForDocComments extends BaseForDocComments {
-
   /// Reference to [foo] and [bar]
   void localMethod(String foo, bar) {}
 }
diff --git a/tool/doc_packages.dart b/tool/doc_packages.dart
index 658ebab..a637f69 100644
--- a/tool/doc_packages.dart
+++ b/tool/doc_packages.dart
@@ -193,7 +193,9 @@
   }
 }
 
-Future _exec(String command, List<String> args, {String cwd, bool quiet: false,
+Future _exec(String command, List<String> args,
+    {String cwd,
+    bool quiet: false,
     Duration timeout: const Duration(seconds: 60)}) {
   return Process
       .start(command, args, workingDirectory: cwd)
diff --git a/tool/grind.dart b/tool/grind.dart
index 610964b..fb9f3ae 100644
--- a/tool/grind.dart
+++ b/tool/grind.dart
@@ -239,13 +239,13 @@
   // Authenticate with firebase.
   run('firebase',
       arguments: [
-    'login',
-    '--email',
-    env['FIREBASE_USER'],
-    '--password',
-    env['FIREBASE_TOKEN'],
-    '-s'
-  ],
+        'login',
+        '--email',
+        env['FIREBASE_USER'],
+        '--password',
+        env['FIREBASE_TOKEN'],
+        '-s'
+      ],
       quiet: true);
 
   // Deploy to firebase.
diff --git a/tool/travis.sh b/tool/travis.sh
index d362056..f7147ec 100755
--- a/tool/travis.sh
+++ b/tool/travis.sh
@@ -7,8 +7,11 @@
 # Fast fail the script on failures.
 set -e
 
-# Globally install grinder.
 pub global activate grinder
+
+pub global activate dart_style
+
+# add globally activated packages to the path
 export PATH="$PATH":"~/.pub-cache/bin"
 
 if [ "$GEN_SDK_DOCS" = "true" ]
@@ -24,7 +27,6 @@
   echo "Skipping SDK docs, because GEN_SDK_DOCS is $GEN_SDK_DOCS"
   echo ""
 
-  # Turn this back on for dartdoc > 0.4.0
   $(dirname -- "$0")/ensure_dartfmt.sh
 
   # Verify that the libraries are error free.