Skip to content

Commit 3080db8

Browse files
Merge pull request dart-archive/test_process#19 from MichaelRFairhurst/remove-import
Remove unused dart:async import
2 parents aa8375f + 759934c commit 3080db8

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

pkgs/test_process/.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: dart
22

33
dart:
4-
- 2.0.0
4+
- 2.1.0
55
- dev
66

77
dart_task:

pkgs/test_process/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.6
2+
3+
* Require Dart >=2.1
4+
15
## 1.0.5
26

37
* Don't allow the test to time out as long as the process is emitting output.

pkgs/test_process/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: test_process
2-
version: 1.0.5
2+
version: 1.0.6-dev
33

44
description: A package for testing subprocesses.
55
homepage: https://github.com/dart-lang/test_process
66

77
environment:
8-
sdk: '>=2.0.0 <3.0.0'
8+
sdk: '>=2.1.0 <3.0.0'
99

1010
dependencies:
1111
async: ^2.0.0

pkgs/test_process/test/test_process_test.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
import 'dart:async';
65
import 'dart:io';
76

87
import 'package:path/path.dart' as p;

0 commit comments

Comments
 (0)