diff --git a/CHANGELOG.md b/CHANGELOG.md index 99accd03b1..3fe67b683d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,12 @@ # Changelog -## Unreleased +## 4.7.0 -* feat: add static code diagnostics `avoid-throw-in-catch-block`, `avoid-unnecessary-type-assertions`, `avoid-unnecessary-type-casts`, -`avoid-missing-enum-constant-in-map` -* feat: introduce file metrics +* feat: add static code diagnostics `avoid-throw-in-catch-block`, `avoid-unnecessary-type-assertions`, `avoid-unnecessary-type-casts`, `avoid-missing-enum-constant-in-map` +* feat: improve check unused l10n +* fix: `no-magic-number` not working in array of widgets * chore: activate self implemented rules: `avoid-unnecessary-type-assertions`, `avoid-unnecessary-type-casts`, `prefer-first`, `prefer-last`, `prefer-match-file-name` * refactor: cleanup anti-patterns, metrics and rules documentation -* fix: `no-magic-number` not working in array of widgets -* feat: improve check unused l10n ## 4.6.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4c28924bd2..5f3de2098a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -89,7 +89,7 @@ To set this up: ```yaml name: dart_code_metrics_plugin_loader description: This pubspec determines the version of the analyzer plugin to load. - version: 4.6.0 + version: 4.7.0 environment: sdk: '>=2.12.0 <3.0.0' diff --git a/README.md b/README.md index 29e82f9f05..eacce01120 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ add it manually to `pubspec.yaml` ```yaml dev_dependencies: - dart_code_metrics: ^4.6.0 + dart_code_metrics: ^4.7.0 ``` and then run diff --git a/pubspec.yaml b/pubspec.yaml index d62e34226a..fd123729c0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dart_code_metrics -version: 4.6.0 +version: 4.7.0 description: Software analytics tool that helps developers analyse and improve software quality. homepage: https://dartcodemetrics.dev repository: https://github.com/dart-code-checker/dart-code-metrics diff --git a/tools/analyzer_plugin/pubspec.yaml b/tools/analyzer_plugin/pubspec.yaml index 0886c98279..3e16672b74 100644 --- a/tools/analyzer_plugin/pubspec.yaml +++ b/tools/analyzer_plugin/pubspec.yaml @@ -1,12 +1,12 @@ name: dart_code_metrics_plugin_loader description: This pubspec determines the version of the analyzer plugin to load. -version: 4.6.0 +version: 4.7.0 environment: sdk: ">=2.14.0 <3.0.0" dependencies: - dart_code_metrics: ^4.6.0 + dart_code_metrics: ^4.7.0 dev_dependencies: lints: ^1.0.1