Skip to content

Commit

Permalink
Update the SDK constraint to >=2.17.0 <4.0.0 (#398)
Browse files Browse the repository at this point in the history
* Update the SDK constraint to

* add a dependabot config
  • Loading branch information
devoncarew committed Apr 27, 2023
1 parent fd6fc9a commit f8e38ad
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Dependabot configuration file.
version: 2

updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.9.4

- Update the SDK constraint to `>=2.17.0 <4.0.0`.

## 0.9.3

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

## 0.9.2

- Run all Dart SDK executables through `dart` rather than their old standalone
names.

## 0.9.1

- Address an issue with the removal of the `pub` tool from Dart 2.17 (#385).
- Address an issue with the removal of the `dartfmt` tool from Dart 2.17.

## 0.9.0

- Publish `0.9.0` stable.
- Address an issue with the `Process.run()` / `RunOptions({bool runInShell})` API (@liudonghua123).

Expand Down
2 changes: 1 addition & 1 deletion lib/src/cli.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import 'cli_util.dart';
import 'singleton.dart' as singleton;

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

List<String> grinderArgs() {
if (_args == null) fail('grinderArgs() may only be called after grind().');
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
name: grinder
# This version must be updated in tandem with the lib/src/cli.dart version.
version: 0.9.3
version: 0.9.4
description: >-
Grinder is a task runner for Dart, helping to define and automate common
project workflows.
repository: https://github.com/google/grinder.dart

environment:
sdk: '>=2.16.0 <3.0.0'
sdk: '>=2.17.0 <4.0.0'

dependencies:
cli_util: ^0.3.0
cli_util: ^0.4.0
glob: ^2.0.0
meta: ^1.4.0
path: ^1.8.0
collection: ^1.15.0

dev_dependencies:
lints: '>=1.0.0 <3.0.0'
lints: ^2.0.0
test: ^1.17.0

executables:
Expand Down

0 comments on commit f8e38ad

Please sign in to comment.