| OLD | NEW |
| 1 name: unittest | 1 name: unittest |
| 2 version: 0.12.0-alpha.0 | 2 version: 0.12.0-alpha.0 |
| 3 author: Dart Team <misc@dartlang.org> | 3 author: Dart Team <misc@dartlang.org> |
| 4 description: A library for writing dart unit tests. | 4 description: A library for writing dart unit tests. |
| 5 homepage: https://github.com/dart-lang/unittest | 5 homepage: https://github.com/dart-lang/unittest |
| 6 environment: | 6 environment: |
| 7 sdk: '>=1.0.0 <2.0.0' | 7 sdk: '>=1.0.0 <2.0.0' |
| 8 dependencies: | 8 dependencies: |
| 9 args: '>=0.12.1 <0.13.0' | 9 args: '>=0.12.1 <0.13.0' |
| 10 stack_trace: '>=1.2.0 <2.0.0' | 10 stack_trace: '>=1.2.0 <2.0.0' |
| 11 | 11 # Use a tight version constraint to ensure that a constraint on unittest |
| 12 # Using the pre-release version of matcher. When published we will go back | |
| 13 # using a tight version constraint to ensure that a constraint on unittest | |
| 14 # properly constraints all features it provides. | 12 # properly constraints all features it provides. |
| 15 matcher: | 13 matcher: '>=0.12.0-alpha.0 <0.12.1' |
| 16 git: https://github.com/dart-lang/matcher.git | |
| 17 dev_dependencies: | 14 dev_dependencies: |
| 18 fake_async: '>=0.1.2 <0.2.0' | 15 fake_async: '>=0.1.2 <0.2.0' |
| OLD | NEW |