diff --git a/CHANGELOG.md b/CHANGELOG.md index f9b4766..97ab190 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.4.4 + +- Add: + - Core: (Added together with Dart `3.1.0`) + - `no_self_assignments` + - `no_wildcard_variable_uses` + ## 0.4.3 - Update licence bearer and links. diff --git a/lib/core.yaml b/lib/core.yaml index 6290832..fc23f5d 100644 --- a/lib/core.yaml +++ b/lib/core.yaml @@ -99,6 +99,8 @@ linter: - no_leading_underscores_for_library_prefixes - no_leading_underscores_for_local_identifiers - no_runtimeType_toString + - no_self_assignments + - no_wildcard_variable_uses - non_constant_identifier_names - noop_primitive_operations - null_check_on_nullable_type_parameter diff --git a/pubspec.yaml b/pubspec.yaml index 901b060..4478547 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: words -version: 0.4.3 +version: 0.4.4 description: >- A curated collection of lints for use by Dart packages to ensure @@ -10,4 +10,4 @@ repository: https://github.com/vxern/words issue_tracker: https://github.com/vxern/words/issues environment: - sdk: ">=3.0.0 <4.0.0" + sdk: ">=3.1.0 <4.0.0"