2.1.0 (dart-lang/lints#107)
* 2.1.0
* constraint fix
* ^^^
* bump SDK constraing
diff --git a/pkgs/lints/CHANGELOG.md b/pkgs/lints/CHANGELOG.md
index fd5cddc..6d83135 100644
--- a/pkgs/lints/CHANGELOG.md
+++ b/pkgs/lints/CHANGELOG.md
@@ -1,3 +1,10 @@
+## 2.1.0
+
+- Updated SDK lower-bound to 3.0
+- Removed `always_require_non_null_named_parameters` from `recommended.yaml`
+ as it is only relevant in Dart pre 2.12 and with Dart 3.0, libraries can
+ no longer be opted back that far.
+
## 2.0.1
- Updated documentation for the `lib/core.yaml` and `lib/recommended.yaml`
diff --git a/pkgs/lints/lib/recommended.yaml b/pkgs/lints/lib/recommended.yaml
index 7541773..77402e5 100644
--- a/pkgs/lints/lib/recommended.yaml
+++ b/pkgs/lints/lib/recommended.yaml
@@ -11,7 +11,6 @@
linter:
rules:
- - always_require_non_null_named_parameters
- annotate_overrides
- avoid_function_literals_in_foreach_calls
- avoid_init_to_null
diff --git a/pkgs/lints/pubspec.yaml b/pkgs/lints/pubspec.yaml
index 13260db..f6df7d7 100644
--- a/pkgs/lints/pubspec.yaml
+++ b/pkgs/lints/pubspec.yaml
@@ -1,12 +1,12 @@
name: lints
-version: 2.0.1
+version: 2.1.0
description: >
Official Dart lint rules. Defines the 'core' and 'recommended' set of lints
suggested by the Dart team.
repository: https://github.com/dart-lang/lints
environment:
- sdk: '>=2.17.0 <3.0.0'
+ sdk: ^3.0.0-417
# NOTE: Code is not allowed in this package. Do not add dependencies.
# dependencies: