From 3ed999604b4afa9232b548932083f65f8f28eb17 Mon Sep 17 00:00:00 2001
From: Kevin Moore <kevmoo@google.com>
Date: Thu, 23 Apr 2015 13:04:33 -0700
Subject: [PATCH] Allow the latest analyzer pkg

R=nweiz@google.com

Review URL: https://codereview.chromium.org//1103703002
---
 README.md    | 4 ++--
 pubspec.yaml | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 731a0324..9febb609 100644
--- a/README.md
+++ b/README.md
@@ -98,7 +98,7 @@ well by passing `pub run test:test -p chrome path/to/test.dart`.
 `test` will take care of starting the browser and loading the tests, and all
 the results will be reported on the command line just like for VM tests. In
 fact, you can even run tests on both platforms with a single command: `pub run
-test:test -p chrome -p vm path/to/test.dart`.
+test:test -p chrome,vm path/to/test.dart`.
 
 ### Restricting Tests to Certain Platforms
 
@@ -357,7 +357,7 @@ void main() {
   group("complicated algorithm tests", () {
     // ...
   }, skip: "the algorithm isn't quite right");
-  
+
   test("error-checking test", () {
     // ...
   }, skip: "TODO: add error-checking.");
diff --git a/pubspec.yaml b/pubspec.yaml
index 937d6318..6c960024 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,12 +1,12 @@
 name: test
-version: 0.12.0-rc.0
+version: 0.12.0-dev
 author: Dart Team <misc@dartlang.org>
 description: A library for writing dart unit tests.
 homepage: https://github.com/dart-lang/test
 environment:
   sdk: '>=1.8.0 <2.0.0'
 dependencies:
-  analyzer: '>=0.23.0 <0.25.0'
+  analyzer: '>=0.23.0 <0.26.0'
   args: '>=0.12.1 <0.14.0'
   barback: '>=0.14.0 <0.16.0'
   crypto: '^0.9.0'
-- 
GitLab