Commit e2275ba 1 parent 81bb7e3 commit e2275ba Copy full SHA for e2275ba
File tree 8 files changed +22
-10
lines changed
8 files changed +22
-10
lines changed Original file line number Diff line number Diff line change 12
12
jobs :
13
13
build :
14
14
runs-on : ubuntu-latest
15
-
15
+ strategy :
16
+ fail-fast : false
17
+ matrix :
18
+ sdk : ['3.0', stable, beta]
16
19
steps :
17
20
- uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
18
- - uses : dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f
21
+ - uses : dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d
22
+ with :
23
+ sdk : ${{ matrix.sdk }}
19
24
20
25
- name : Install dependencies
21
26
run : dart pub get
Original file line number Diff line number Diff line change
1
+ ## 0.9.5
2
+
3
+ - Update the SDK constraint to 3.0.
4
+ - Rev to the latest version of ` package:lints ` .
5
+
1
6
## 0.9.4
2
7
3
8
- Update the SDK constraint to ` >=2.17.0 <4.0.0 ` .
Original file line number Diff line number Diff line change 6
6
/// The main entry-point (`bin/grinder.dart` ) trampolines into a different
7
7
/// script; running with `_boot.dart` instead allows you to hit breakpoints when
8
8
/// debugging.
9
+ library ;
10
+
9
11
import 'package:grinder/grinder.dart' ;
10
12
11
13
Future <dynamic > main (List <String > args) => grind (args);
Original file line number Diff line number Diff line change @@ -547,7 +547,7 @@ String? _parseVersion(String output) {
547
547
}
548
548
549
549
class _PubGlobalApp extends PubApp {
550
- _PubGlobalApp (String packageName) : super ._(packageName );
550
+ _PubGlobalApp (super . packageName) : super ._();
551
551
552
552
@override
553
553
bool get isGlobal => true ;
@@ -580,7 +580,7 @@ class _PubGlobalApp extends PubApp {
580
580
}
581
581
582
582
class _PubLocalApp extends PubApp {
583
- _PubLocalApp (String packageName) : super ._(packageName );
583
+ _PubLocalApp (super . packageName) : super ._();
584
584
585
585
@override
586
586
bool get isGlobal => false ;
Original file line number Diff line number Diff line change @@ -50,5 +50,5 @@ class Depends {
50
50
///
51
51
/// Use this instead of [Task] when defining the default task.
52
52
class DefaultTask extends Task {
53
- const DefaultTask ([String ? description]) : super ( description);
53
+ const DefaultTask ([super . description] );
54
54
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import 'cli_util.dart';
13
13
import 'singleton.dart' as singleton;
14
14
15
15
// This version must be updated in tandem with the pubspec version.
16
- const String appVersion = '0.9.4 ' ;
16
+ const String appVersion = '0.9.5 ' ;
17
17
18
18
List <String > grinderArgs () {
19
19
if (_args == null ) fail ('grinderArgs() may only be called after grind().' );
Original file line number Diff line number Diff line change 1
1
name : grinder
2
2
# This version must be updated in tandem with the lib/src/cli.dart version.
3
- version : 0.9.4
3
+ version : 0.9.5
4
4
description : >-
5
5
Grinder is a task runner for Dart, helping to define and automate common
6
6
project workflows.
7
7
repository : https://github.com/google/grinder.dart
8
8
9
9
environment :
10
- sdk : ' >=2.17.0 <4.0.0 '
10
+ sdk : ^3.0.0
11
11
12
12
dependencies :
13
13
cli_util : ^0.4.0
@@ -17,7 +17,7 @@ dependencies:
17
17
collection : ^1.15.0
18
18
19
19
dev_dependencies :
20
- lints : ^2 .0.0
20
+ lints : ^3 .0.0
21
21
test : ^1.17.0
22
22
23
23
executables :
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ void checkInit() {
28
28
final pubspec = temp.join ('pubspec.yaml' ).createFile ();
29
29
pubspec.writeAsStringSync ('''name: foo
30
30
environment:
31
- sdk: '>=2.10.0 < 3.0.0'
31
+ sdk: '^ 3.0.0'
32
32
33
33
dependencies:
34
34
grinder:
You can’t perform that action at this time.
0 commit comments