diff --git a/CHANGELOG.md b/CHANGELOG.md index 86eae12..bdaabb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.4.2 + +- Remove: + - Core: + - `avoid_equals_and_hash_code_on_mutable_classes`: Requires the `meta` + package, which not everybody wants to use. + ## 0.4.1 - Remove: diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 204b37d..4f02731 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -9,4 +9,4 @@ environment: sdk: '>=3.0.0 <4.0.0' dev_dependencies: - words: ^0.4.1 \ No newline at end of file + words: ^0.4.2 \ No newline at end of file diff --git a/lib/core.yaml b/lib/core.yaml index bf80197..6290832 100644 --- a/lib/core.yaml +++ b/lib/core.yaml @@ -46,7 +46,6 @@ linter: - avoid_catches_without_on_clauses - avoid_classes_with_only_static_members - avoid_double_and_int_checks - - avoid_equals_and_hash_code_on_mutable_classes - avoid_escaping_inner_quotes - avoid_field_initializers_in_const_classes - avoid_final_parameters diff --git a/pubspec.yaml b/pubspec.yaml index 7d42ff4..81ae138 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: words -version: 0.4.1 +version: 0.4.2 description: >- A curated collection of lints for use by Dart packages to ensure