Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/health.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ jobs:
with:
ignore_coverage: "**.mock.dart,**.g.dart"
ignore_license: "**.mock.dart,**.g.dart,**.mocks.dart,pkgs/platform/*"
sdk: beta
permissions:
pull-requests: write
3 changes: 2 additions & 1 deletion .github/workflows/lints.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
strategy:
fail-fast: false
matrix:
sdk: [dev, beta, stable]
# TODO: Re-add stable to the matrix once 3.8 is out.
sdk: [dev, beta]

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
if: ${{ github.repository_owner == 'dart-lang' }}
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
with:
sdk: beta
write-comments: false
permissions:
id-token: write
Expand Down
4 changes: 2 additions & 2 deletions pkgs/lints/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## 6.0.0-wip
## 6.0.0

- `core`:
- added [strict_top_level_inference] (https://github.com/dart-lang/core/issues/836)
- `recommended`:
- added [unnecessary_underscores] (https://github.com/dart-lang/core/issues/856)
- Require Dart 3.7.
- Require Dart 3.8.

[strict_top_level_inference]: https://dart.dev/lints/strict_top_level_inference
[unnecessary_underscores]: https://dart.dev/lints/unnecessary_underscores
Expand Down
4 changes: 2 additions & 2 deletions pkgs/lints/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: lints
version: 6.0.0-wip
version: 6.0.0
description: >
Official Dart lint rules. Defines the 'core' and 'recommended' set of lints
suggested by the Dart team.
Expand All @@ -11,7 +11,7 @@ topics:
- lints

environment:
sdk: ^3.7.0
sdk: ^3.8.0-0

# NOTE: Code is not allowed in this package - do not add dependencies.
# dependencies:
Expand Down
Loading