From 12e34a6e000a6c1c8a93bfca9d45d3b4c13c2257 Mon Sep 17 00:00:00 2001 From: Dmitry Krutskikh Date: Mon, 17 Jan 2022 21:49:07 +0300 Subject: [PATCH] build: update version --- CHANGELOG.md | 9 ++++----- CONTRIBUTING.md | 2 +- README.md | 6 +++--- pubspec.yaml | 2 +- tools/analyzer_plugin/pubspec.yaml | 4 ++-- website/docs/getting-started/installation.md | 2 +- 6 files changed, 12 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c00a1ef9a..76801e0d26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,12 @@ # Changelog -## Unreleased +## 4.10.0-dev.1 -* fix: ignore private variables in `avoid-global-state` rule. -* feat: support excludes for a separate anti-pattern. -* chore: restrict `analyzer` version to `>=2.4.0 <3.2.0`. * feat: add check unused code command. +* feat: support excludes for a separate anti-pattern. * feat: ignore private members for `check-unused-l10n` command. -* chore: remove `@immutable` annotation from code. +* fix: ignore private variables in `avoid-global-state` rule. +* chore: restrict `analyzer` version to `>=2.4.0 <3.2.0`. ## 4.9.1 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ef4a3d90bd..76e78cc57f 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.9.1 + version: 4.10.0-dev.1 environment: sdk: ">=2.14.0 <3.0.0" diff --git a/README.md b/README.md index a9bd3eda16..ee7e31ec8a 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ add it manually to `pubspec.yaml` ```yaml dev_dependencies: - dart_code_metrics: ^4.9.1 + dart_code_metrics: ^4.10.0-dev.1 ``` and then run @@ -119,8 +119,8 @@ The package can be used as CLI and supports multiple commands: | Command | Example of use | Short description | | ------------------ | --------------------------------------------------------- | --------------------------------------------------------- | | analyze | dart run dart_code_metrics:metrics analyze lib | Reports code metrics, rules and anti-patterns violations. | -| check-unused-files | dart run dart_code_metrics:metrics check-unused-files lib | Checks unused \*.dart files. | -| check-unused-l10n | dart run dart_code_metrics:metrics check-unused-l10n lib | Check unused localization in *.dart files. | +| check-unused-files | dart run dart_code_metrics:metrics check-unused-files lib | Checks unused \*.dart files. | +| check-unused-l10n | dart run dart_code_metrics:metrics check-unused-l10n lib | Check unused localization in *.dart files. | For additional help on any of the commands, enter `dart run dart_code_metrics:metrics help ` diff --git a/pubspec.yaml b/pubspec.yaml index bd3d10e244..07e443180a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dart_code_metrics -version: 4.9.1 +version: 4.10.0-dev.1 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 592aec7700..344c35ad05 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.9.1 +version: 4.10.0-dev.1 environment: sdk: ">=2.14.0 <3.0.0" dependencies: - dart_code_metrics: ^4.9.1 + dart_code_metrics: ^4.10.0-dev.1 dev_dependencies: lints: ^1.0.1 diff --git a/website/docs/getting-started/installation.md b/website/docs/getting-started/installation.md index 8468fbddf3..d76d015522 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.9.1 + dart_code_metrics: ^4.10.0-dev.1 ``` and then run