diff --git a/CHANGELOG.md b/CHANGELOG.md index 44ca7b9cd1..f4160df380 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 4.14.0 * feat: add static code diagnostic [`prefer-commenting-analyzer-ignores`](https://dartcodemetrics.dev/docs/rules/common/prefer-commenting-analyzer-ignores). * feat: add static code diagnostic [`prefer-moving-to-variable`](https://dartcodemetrics.dev/docs/rules/common/prefer-moving-to-variable). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 548a125b20..7c9ae17fa2 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.13.0 + version: 4.14.0 environment: sdk: ">=2.14.0 <3.0.0" diff --git a/README.md b/README.md index bff6b042a9..c549e145cb 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ add it manually to `pubspec.yaml` ```yaml dev_dependencies: - dart_code_metrics: ^4.13.0 + dart_code_metrics: ^4.14.0 ``` and then run diff --git a/lib/src/version.dart b/lib/src/version.dart index 04dbe96f5f..b6fe0173f5 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '4.13.0'; +const packageVersion = '4.14.0'; diff --git a/pubspec.yaml b/pubspec.yaml index fcd65f19bf..7ee616593b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dart_code_metrics -version: 4.13.0 +version: 4.14.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 2f874620e3..4afd6f5182 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.13.0 +version: 4.14.0 environment: sdk: ">=2.14.0 <3.0.0" dependencies: - dart_code_metrics: ^4.13.0 + dart_code_metrics: ^4.14.0 dev_dependencies: lints: ^1.0.1 diff --git a/website/docs/getting-started/installation.md b/website/docs/getting-started/installation.md index ddfb800274..0f0b16ced8 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.13.0 + dart_code_metrics: ^4.14.0 ``` and then run