Version 1.6.0-dev.9.5

svn merge -c 39268 https://dart.googlecode.com/svn/branches/bleeding_edge trunk
Update blink revision to [blink]/branches/dart/2062@180594
Chromium and Blink were changed to branches/dart/2062 in 1.6.0-dev.9.4

git-svn-id: http://dart.googlecode.com/svn/trunk@39401 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/sdk/lib/_internal/pub/lib/src/command/global_run.dart b/sdk/lib/_internal/pub/lib/src/command/global_run.dart
index 2629854..d0f35ba 100644
--- a/sdk/lib/_internal/pub/lib/src/command/global_run.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/global_run.dart
@@ -16,7 +16,8 @@
   bool get takesArguments => true;
   bool get allowTrailingOptions => false;
   String get description =>
-      "Run an executable from a globally activated package.";
+      "Run an executable from a globally activated package.\n"
+      "NOTE: We are currently optimizing this command's startup time.";
   String get usage => "pub global run <package>:<executable> [args...]";
 
   Future onRun() {
diff --git a/sdk/lib/_internal/pub/lib/src/command/run.dart b/sdk/lib/_internal/pub/lib/src/command/run.dart
index 34ac728..9881b6d 100644
--- a/sdk/lib/_internal/pub/lib/src/command/run.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/run.dart
@@ -15,7 +15,8 @@
 class RunCommand extends PubCommand {
   bool get takesArguments => true;
   bool get allowTrailingOptions => false;
-  String get description => "Run an executable from a package.";
+  String get description => "Run an executable from a package.\n"
+      "NOTE: We are currently optimizing this command's startup time.";
   String get usage => "pub run <executable> [args...]";
 
   Future onRun() {
diff --git a/tools/VERSION b/tools/VERSION
index 442bdc3..2f05b9e 100644
--- a/tools/VERSION
+++ b/tools/VERSION
@@ -28,4 +28,4 @@
 MINOR 6
 PATCH 0
 PRERELEASE 9
-PRERELEASE_PATCH 4
+PRERELEASE_PATCH 5