Skip to content

Commit f8e38ad

Browse files
authored
Update the SDK constraint to >=2.17.0 <4.0.0 (#398)
* Update the SDK constraint to * add a dependabot config
1 parent fd6fc9a commit f8e38ad

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

.github/dependabot.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Dependabot configuration file.
2+
version: 2
3+
4+
updates:
5+
- package-ecosystem: "github-actions"
6+
directory: "/"
7+
schedule:
8+
interval: "monthly"

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.9.4
2+
3+
- Update the SDK constraint to `>=2.17.0 <4.0.0`.
4+
15
## 0.9.3
26

37
- Remove the use of the `alwaysThrows` annotation.
@@ -6,14 +10,17 @@
610
- Update the markdown badges in the readme.
711

812
## 0.9.2
13+
914
- Run all Dart SDK executables through `dart` rather than their old standalone
1015
names.
1116

1217
## 0.9.1
18+
1319
- Address an issue with the removal of the `pub` tool from Dart 2.17 (#385).
1420
- Address an issue with the removal of the `dartfmt` tool from Dart 2.17.
1521

1622
## 0.9.0
23+
1724
- Publish `0.9.0` stable.
1825
- Address an issue with the `Process.run()` / `RunOptions({bool runInShell})` API (@liudonghua123).
1926

lib/src/cli.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import 'cli_util.dart';
1313
import 'singleton.dart' as singleton;
1414

1515
// This version must be updated in tandem with the pubspec version.
16-
const String appVersion = '0.9.3';
16+
const String appVersion = '0.9.4';
1717

1818
List<String> grinderArgs() {
1919
if (_args == null) fail('grinderArgs() may only be called after grind().');

pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
name: grinder
22
# This version must be updated in tandem with the lib/src/cli.dart version.
3-
version: 0.9.3
3+
version: 0.9.4
44
description: >-
55
Grinder is a task runner for Dart, helping to define and automate common
66
project workflows.
77
repository: https://github.com/google/grinder.dart
88

99
environment:
10-
sdk: '>=2.16.0 <3.0.0'
10+
sdk: '>=2.17.0 <4.0.0'
1111

1212
dependencies:
13-
cli_util: ^0.3.0
13+
cli_util: ^0.4.0
1414
glob: ^2.0.0
1515
meta: ^1.4.0
1616
path: ^1.8.0
1717
collection: ^1.15.0
1818

1919
dev_dependencies:
20-
lints: '>=1.0.0 <3.0.0'
20+
lints: ^2.0.0
2121
test: ^1.17.0
2222

2323
executables:

0 commit comments

Comments
 (0)