Skip to content

Commit 6a07a16

Browse files
authored
update lints (#284)
1 parent 43a8582 commit 6a07a16

File tree

15 files changed

+30
-22
lines changed

15 files changed

+30
-22
lines changed

.github/workflows/graphs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
fail-fast: false
5454
matrix:
5555
os: [ubuntu-latest]
56-
sdk: [3.0.0, dev]
56+
sdk: [3.4, dev]
5757
steps:
5858
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
5959
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672

pkgs/cli_config/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.1-wip
2+
3+
- Require Dart 3.4.
4+
15
## 0.2.0
26

37
- **Breaking Change** Rename `Config.fromArgs` to `Config.fromArguments`.

pkgs/cli_config/lib/cli_config.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
/// A library to take config values from configuration files, CLI arguments,
66
/// and environment variables.
7-
library cli_config;
7+
library;
88

99
export 'src/config.dart';

pkgs/cli_config/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: cli_config
22
description: >-
33
A library to take config values from configuration files, CLI arguments, and
44
environment variables.
5-
version: 0.2.0
5+
version: 0.2.1-wip
66
repository: https://github.com/dart-lang/tools/tree/main/pkgs/cli_config
77

88
environment:
9-
sdk: ^3.0.0
9+
sdk: ^3.4.0
1010

1111
dependencies:
1212
args: ^2.4.0
1313
yaml: ^3.1.1
1414

1515
dev_dependencies:
16-
dart_flutter_team_lints: ^2.0.0
16+
dart_flutter_team_lints: ^3.0.0
1717
test: ^1.21.0

pkgs/extension_discovery/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 2.0.1-wip
22

3-
- Require Dart 3.0.
3+
- Require Dart 3.4.
44
- Update to the latest version of `package:dart_flutter_team_lints`.
55

66
## 2.0.0

pkgs/extension_discovery/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ dependencies:
147147
hello_world: ^1.0.0
148148
hello_world_german: ^1.0.0
149149
environment:
150-
sdk: ^3.0.0
150+
sdk: ^3.4.0
151151
```
152152

153153
Then I can write a `bin/hello.dart` as follows:

pkgs/extension_discovery/example/hello_world/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ dependencies:
77
path: ../../
88

99
environment:
10-
sdk: ^3.0.0
10+
sdk: ^3.4.0

pkgs/extension_discovery/example/hello_world_app/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ dependencies:
88
path: ../hello_world_german
99

1010
environment:
11-
sdk: ^3.0.0
11+
sdk: ^3.4.0

pkgs/extension_discovery/example/hello_world_german/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ dependencies:
1212
path: ../hello_world
1313

1414
environment:
15-
sdk: ^3.0.0
15+
sdk: ^3.4.0

pkgs/extension_discovery/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ version: 2.0.1-wip
55
repository: https://github.com/dart-lang/tools/tree/main/pkgs/extension_discovery
66

77
environment:
8-
sdk: ^3.0.0
8+
sdk: ^3.4.0
99

1010
dependencies:
1111
yaml: ^3.0.0
1212

1313
dev_dependencies:
1414
collection: ^1.18.0
15-
dart_flutter_team_lints: ^2.0.0
15+
dart_flutter_team_lints: ^3.0.0
1616
test: ^1.21.0
1717
test_descriptor: ^2.0.1

0 commit comments

Comments
 (0)