From 63cddd8ed55e40a51a7e0a524f4531ca7cabda8b Mon Sep 17 00:00:00 2001 From: Dmitry Zhifarsky Date: Mon, 23 Jan 2023 22:06:13 +0400 Subject: [PATCH] build: update version --- CHANGELOG.md | 2 +- CONTRIBUTING.md | 2 +- README.md | 2 +- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- tools/analyzer_plugin/pubspec.yaml | 4 ++-- website/docs/getting-started/installation.md | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e826ddae83..2c0f8b6657 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 5.5.0 * fix: partially handle normal completion function body for [`avoid-redundant-async`](https://dcm.dev/docs/individuals/rules/common/avoid-redundant-async). * fix: ignore enum constant arguments for [`no-magic-number`](https://dcm.dev/docs/individuals/rules/common/no-magic-number). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 170e6e86d8..bbe2cd89b0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -92,7 +92,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: 5.4.0 + version: 5.5.0 environment: sdk: ">=2.18.0 <3.0.0" diff --git a/README.md b/README.md index fda55fc5d0..b2d2f43b2b 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ add it manually to `pubspec.yaml` ```yaml dev_dependencies: - dart_code_metrics: ^5.4.0 + dart_code_metrics: ^5.5.0 ``` and then run diff --git a/lib/src/version.dart b/lib/src/version.dart index 3dfd2c8ed8..acb923d2be 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '5.4.0'; +const packageVersion = '5.5.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 862a9c3845..c45881d7d2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dart_code_metrics -version: 5.4.0 +version: 5.5.0 description: Software analytics tool that helps developers analyse and improve software quality. homepage: https://dcm.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 3a7d88493e..c97b0b5926 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: 5.4.0 +version: 5.5.0 environment: sdk: ">=2.14.0 <3.0.0" dependencies: - dart_code_metrics: 5.4.0 + dart_code_metrics: 5.5.0 dev_dependencies: lints: ^1.0.1 diff --git a/website/docs/getting-started/installation.md b/website/docs/getting-started/installation.md index 8413118607..0dc1c91a0e 100644 --- a/website/docs/getting-started/installation.md +++ b/website/docs/getting-started/installation.md @@ -23,7 +23,7 @@ environment: sdk: '>=2.18.0 <3.0.0' dev_dependencies: - dart_code_metrics: ^5.4.0 + dart_code_metrics: ^5.5.0 ``` and then run