diff --git a/CHANGELOG.md b/CHANGELOG.md index 720a9d40da..c495cdc75f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 5.3.0 * feat: add static code diagnostic [`list-all-equatable-fields`](https://dartcodemetrics.dev/docs/rules/common/list-all-equatable-fields). * feat: add `strict` config option to [`avoid-collection-methods-with-unrelated-types`](https://dartcodemetrics.dev/docs/rules/common/avoid-collection-methods-with-unrelated-types). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ad17bd6f47..1d19ca2f26 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.2.1 + version: 5.3.0 environment: sdk: ">=2.18.0 <3.0.0" diff --git a/README.md b/README.md index 85874acc12..74081ff10d 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ add it manually to `pubspec.yaml` ```yaml dev_dependencies: - dart_code_metrics: ^5.2.1 + dart_code_metrics: ^5.3.0 ``` and then run diff --git a/lib/src/version.dart b/lib/src/version.dart index 84719ef9b1..71feea41cf 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '5.2.1'; +const packageVersion = '5.3.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 447b3b9674..37cd7568a4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dart_code_metrics -version: 5.2.1 +version: 5.3.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 a87dba6ff9..9e0dabcadd 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.2.1 +version: 5.3.0 environment: sdk: ">=2.14.0 <3.0.0" dependencies: - dart_code_metrics: 5.2.1 + dart_code_metrics: 5.3.0 dev_dependencies: lints: ^1.0.1 diff --git a/website/docs/getting-started/installation.md b/website/docs/getting-started/installation.md index 448490c63a..0917377491 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.2.1 + dart_code_metrics: ^5.3.0 ``` and then run