Skip to content
Snippets Groups Projects
Commit 607319b5 authored by Patrice Chalin's avatar Patrice Chalin Committed by Kevin Moore
Browse files

chore: set max SDK version to <3.0.0 (#14)

parent 9e89438a
No related branches found
Tags 1.0.4
No related merge requests found
......@@ -2,16 +2,19 @@ language: dart
dart:
- dev
dart_task:
- dartfmt
- dartanalyzer
- test
# Only run one instance of the formatter and the analyzer, rather than running
# Only run one instance of the formatter and the analyzer, rather than running
# them against each Dart version.
matrix:
include:
- dart: dev
exclude:
- dart: stable
dart_task: dartfmt
- dart: dev
- dart: stable
dart_task: dartanalyzer
# Only building master means that we don't run two builds for each pull request.
......
## 1.0.4
* Set max SDK version to `<3.0.0`, and adjust other dependencies.
## 1.0.3
* Support test `1.x.x`.
......
analyzer:
strong-mode: true
name: test_process
version: 1.0.3
version: 1.0.4
description: A package for testing subprocesses.
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/dart-lang/test_process
environment:
sdk: '>=2.0.0-dev.55.0 <2.0.0'
sdk: '>=2.0.0-dev.55.0 <3.0.0'
dependencies:
async: ">=1.12.0 <3.0.0"
meta: ">=0.9.0 <2.0.0"
path: "^1.0.0"
test: ">=0.12.19 <2.0.0"
async: '>=1.12.0 <3.0.0'
meta: '>=0.9.0 <2.0.0'
path: ^1.0.0
test: '>=0.12.42 <2.0.0'
dev_dependencies:
test_descriptor: "^1.0.0"
test_descriptor: ^1.0.0
......@@ -11,7 +11,7 @@ import 'package:test/test.dart';
import 'package:test_descriptor/test_descriptor.dart' as d;
import 'package:test_process/test_process.dart';
final throwsTestFailure = throwsA(new isInstanceOf<TestFailure>());
final throwsTestFailure = throwsA(new TypeMatcher<TestFailure>());
void main() {
group("shouldExit()", () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment