Skip to content

Commit 228112c

Browse files
authored
prep to publish 6.0.0 of package:lints (#878)
1 parent e32c7b9 commit 228112c

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

.github/workflows/health.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ jobs:
1010
with:
1111
ignore_coverage: "**.mock.dart,**.g.dart"
1212
ignore_license: "**.mock.dart,**.g.dart,**.mocks.dart,pkgs/platform/*"
13+
sdk: beta
1314
permissions:
1415
pull-requests: write

.github/workflows/lints.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
sdk: [dev, beta, stable]
29+
# TODO: Re-add stable to the matrix once 3.8 is out.
30+
sdk: [dev, beta]
3031

3132
steps:
3233
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

.github/workflows/publish.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
if: ${{ github.repository_owner == 'dart-lang' }}
1414
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
1515
with:
16+
sdk: beta
1617
write-comments: false
1718
permissions:
1819
id-token: write

pkgs/lints/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
## 6.0.0-wip
1+
## 6.0.0
22

33
- `core`:
44
- added [strict_top_level_inference] (https://github.com/dart-lang/core/issues/836)
55
- `recommended`:
66
- added [unnecessary_underscores] (https://github.com/dart-lang/core/issues/856)
7-
- Require Dart 3.7.
7+
- Require Dart 3.8.
88

99
[strict_top_level_inference]: https://dart.dev/lints/strict_top_level_inference
1010
[unnecessary_underscores]: https://dart.dev/lints/unnecessary_underscores

pkgs/lints/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Additionally, a third lint set -
2828
recommended set with additional recommended Flutter-specific lints.
2929

3030
The Dart team will likely not provide recommendations past the `core` and
31-
`recommended` sets (e.g., a `strict` rule set). However, there are many such rule
32-
sets in the ecosystem (available at [pub.dev](https://pub.dev/)).
31+
`recommended` sets (e.g., a `strict` rule set). However, there are many such
32+
rule sets in the ecosystem (available at [pub.dev](https://pub.dev/)).
3333

3434
Rule set authors: consider adding the `lints` topic to your pubspec to allow
3535
easier discovery (e.g.,

pkgs/lints/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: lints
2-
version: 6.0.0-wip
2+
version: 6.0.0
33
description: >
44
Official Dart lint rules. Defines the 'core' and 'recommended' set of lints
55
suggested by the Dart team.
@@ -11,7 +11,7 @@ topics:
1111
- lints
1212

1313
environment:
14-
sdk: ^3.7.0
14+
sdk: ^3.8.0-0
1515

1616
# NOTE: Code is not allowed in this package - do not add dependencies.
1717
# dependencies:

0 commit comments

Comments
 (0)