File tree Expand file tree Collapse file tree 4 files changed +12
-16
lines changed Expand file tree Collapse file tree 4 files changed +12
-16
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ jobs:
20
20
strategy :
21
21
fail-fast : false
22
22
matrix :
23
- sdk : [dev, beta ]
23
+ sdk : [dev, 2.12.0 ]
24
24
steps :
25
25
- uses : actions/checkout@v2
26
- - uses : dart-lang/setup-dart@v0.5
26
+ - uses : dart-lang/setup-dart@v1.0
27
27
with :
28
28
sdk : ${{ matrix.sdk }}
29
29
- id : install
@@ -47,10 +47,10 @@ jobs:
47
47
matrix :
48
48
# Add macos-latest and/or windows-latest if relevant for this package.
49
49
os : [ubuntu-latest]
50
- sdk : [dev, beta ]
50
+ sdk : [dev, 2.12.0 ]
51
51
steps :
52
52
- uses : actions/checkout@v2
53
- - uses : dart-lang/setup-dart@v0.5
53
+ - uses : dart-lang/setup-dart@v1.0
54
54
with :
55
55
sdk : ${{ matrix.sdk }}
56
56
- id : install
Original file line number Diff line number Diff line change
1
+ ## 1.0.1-dev
2
+
1
3
## 1.0.0
2
4
3
5
* Migrate this package to null-safety
Original file line number Diff line number Diff line change @@ -2,24 +2,18 @@ name: io
2
2
description : >-
3
3
Utilities for the Dart VM Runtime including support for ANSI colors,
4
4
file copying, and standard exit code values.
5
- version : 1.0.0
5
+ version : 1.0.1-dev
6
6
repository : https://github.com/dart-lang/io
7
7
8
8
environment :
9
- sdk : " >=2.12.0-0 <3.0.0"
9
+ sdk : " >=2.12.0 <3.0.0"
10
10
11
11
dependencies :
12
12
meta : ^1.3.0
13
13
path : ^1.8.0
14
14
string_scanner : ^1.1.0
15
15
16
16
dev_dependencies :
17
- dart_style : ^1.0.7
18
17
pedantic : ^1.10.0
19
18
test : ^1.16.0
20
19
test_descriptor : ^2.0.0
21
-
22
- dependency_overrides :
23
- # Necessary until the test package supports 0.4.0
24
- test : ^1.16.0
25
- test_core : ^0.3.0
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ void main() {
34
34
}
35
35
36
36
d.DirectoryDescriptor _struct () => d.dir ('parent' , [
37
- d.dir ('child' , [
38
- d.file ('foo.txt' ),
39
- ]),
40
- ]);
37
+ d.dir ('child' , [
38
+ d.file ('foo.txt' ),
39
+ ]),
40
+ ]);
41
41
42
42
Future <void > _create () => _struct ().create ();
43
43
Future <void > _validate () => _struct ().validate ();
You can’t perform that action at this time.
0 commit comments