Chromium Code Reviews| Index: pubspec.yaml |
| diff --git a/pubspec.yaml b/pubspec.yaml |
| index 5de05077fd13cb8fce323982f37da5ee370ff4f0..e4536d07f3f5f7cc6c5103ae23667ca8fb94391a 100644 |
| --- a/pubspec.yaml |
| +++ b/pubspec.yaml |
| @@ -1,15 +1,13 @@ |
| name: unittest |
| -version: 0.12.0-alpha.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/unittest |
| environment: |
| - sdk: '>=1.0.0 <2.0.0' |
| + sdk: '>=1.9.0-dev.5.1 <2.0.0' |
| dependencies: |
| - args: '>=0.12.1 <0.13.0' |
| - stack_trace: '>=1.2.0 <2.0.0' |
| - # Use a tight version constraint to ensure that a constraint on unittest |
| - # properly constraints all features it provides. |
|
nweiz
2015/02/23 23:13:43
I missed this in the review; why did you get rid o
kevmoo
2015/02/23 23:20:18
Likely a total oversight on my part. The editor nu
|
| - matcher: '>=0.12.0-alpha.0 <0.12.1' |
| + args: '^0.12.1' |
| + matcher: '^0.12.0-alpha.0' |
| + stack_trace: '^1.2.0' |
| dev_dependencies: |
| - fake_async: '>=0.1.2 <0.2.0' |
| + fake_async: '^0.1.2' |