From fd3154c9091bd949b8d68eedf1c4aada1a275242 Mon Sep 17 00:00:00 2001 From: Dmitry Krutskikh Date: Mon, 10 Jan 2022 19:34:53 +0300 Subject: [PATCH] build: update version --- CHANGELOG.md | 16 ++++------------ CONTRIBUTING.md | 2 +- README.md | 2 +- pubspec.yaml | 2 +- tools/analyzer_plugin/pubspec.yaml | 4 ++-- website/docs/getting-started/installation.md | 2 +- 6 files changed, 10 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b211ed56bd..2bb897ae26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,22 +1,14 @@ # Changelog -## Unreleased +## 4.9.0 * feat: add static code diagnostics `avoid-global-state`, `avoid-unrelated-type-assertions`. -* chore: migrate from deprecated api. -* fix: fixed issue with type check in prefer-match-file-name. -* fix: stabilized command usage tests. -* doc: add flutter favorite badge. -* chore: disable github_checks annotations from codecov. -* chore: activate language strict rules. -* fix: add missing severity for rules. +* feat: support extensions and static getters for `check-unused-l10n`. +* feat: improve `prefer-correct-type-name`, `prefer-match-file-name` rules. +* feat: add `delete-files` flag to `check-unused-files` command. * feat: facelift console reporters. * chore: restrict `analyzer` version to `>=2.4.0 <3.1.0`. * chore: restrict `analyzer_plugin` version to `>=0.8.0 <0.10.0`. -* feat: support extensions and static getters for check-unused-l10n. -* feat: improve `prefer-correct-type-name` rule. -* feat: add `delete-files` flag to `check-unused-files` command. -* build: activate check_unused_files on CI. ## 4.8.1 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a6f7178a45..bdb07455aa 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.8.1 + version: 4.9.0 environment: sdk: ">=2.14.0 <3.0.0" diff --git a/README.md b/README.md index 132c6d5cba..feb9dde871 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ add it manually to `pubspec.yaml` ```yaml dev_dependencies: - dart_code_metrics: ^4.8.1 + dart_code_metrics: ^4.9.0 ``` and then run diff --git a/pubspec.yaml b/pubspec.yaml index c31eae9ee8..699b9eac8d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dart_code_metrics -version: 4.8.1 +version: 4.9.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 d3674d2b73..4a904fa492 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.8.1 +version: 4.9.0 environment: sdk: ">=2.14.0 <3.0.0" dependencies: - dart_code_metrics: ^4.8.1 + dart_code_metrics: ^4.9.0 dev_dependencies: lints: ^1.0.1 diff --git a/website/docs/getting-started/installation.md b/website/docs/getting-started/installation.md index cda1d0fc05..a552e3cbbe 100644 --- a/website/docs/getting-started/installation.md +++ b/website/docs/getting-started/installation.md @@ -23,7 +23,7 @@ environment: sdk: '>=2.12.0 <3.0.0' dev_dependencies: - dart_code_metrics: ^4.8.0 + dart_code_metrics: ^4.9.0 ``` and then run