diff --git a/CHANGELOG.md b/CHANGELOG.md index 56007f7792..0537235351 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,12 @@ # Changelog -## Unreleased +## 4.8.0 * feat: add alphabetical sorting by type for `member-ordering-extended` rule. * feat: add support mixins, extensions and enums for `prefer-match-file-name` rule. * feat: add `technical-debt` metric. -* fix: prefer conditional expressions rule breaks code with increment / decrement operators. -* fix: improve file metrics. -* feat: add metric value unit type. +* fix: `prefer-conditional-expressions` rule breaks code with increment / decrement operators. * chore: restrict `analyzer` version to `>=2.4.0 <2.9.0`. -* chore: tune GitHub workflows. ## 4.7.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5f3de2098a..352cc406b2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -89,10 +89,10 @@ 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.7.0 + version: 4.8.0 environment: - sdk: '>=2.12.0 <3.0.0' + sdk: ">=2.14.0 <3.0.0" dependencies: dart_code_metrics: diff --git a/README.md b/README.md index eacce01120..3fac7ff615 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ add it manually to `pubspec.yaml` ```yaml dev_dependencies: - dart_code_metrics: ^4.7.0 + dart_code_metrics: ^4.8.0 ``` and then run diff --git a/pubspec.yaml b/pubspec.yaml index ca13879d39..e4fe3f11de 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dart_code_metrics -version: 4.7.0 +version: 4.8.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 3e16672b74..c46ca7c0fd 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.7.0 +version: 4.8.0 environment: sdk: ">=2.14.0 <3.0.0" dependencies: - dart_code_metrics: ^4.7.0 + dart_code_metrics: ^4.8.0 dev_dependencies: lints: ^1.0.1