diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cfe91a418..fe602af1b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 4.15.1 + +* chore: restrict `analyzer` version to `>=2.4.0 <4.1.0`. +* chore: restrict `analyzer_plugin` version to `>=0.8.0 <0.11.0`. + ## 4.15.0 * fix: [`format-comment`](https://dartcodemetrics.dev/docs/rules/common/format-comment) is listing the macros from dart doc. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 892a6ad10a..4eab589321 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.15.0 + version: 4.15.1 environment: sdk: ">=2.14.0 <3.0.0" diff --git a/README.md b/README.md index a515b466c9..4fea6bd5d2 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ add it manually to `pubspec.yaml` ```yaml dev_dependencies: - dart_code_metrics: ^4.15.0 + dart_code_metrics: ^4.15.1 ``` and then run diff --git a/lib/src/version.dart b/lib/src/version.dart index 384e10bda6..c16d3a5616 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '4.15.0'; +const packageVersion = '4.15.1'; diff --git a/pubspec.yaml b/pubspec.yaml index 97324a1f69..508ca25fa9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dart_code_metrics -version: 4.15.0 +version: 4.15.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 @@ -10,8 +10,8 @@ environment: sdk: ">=2.14.0 <3.0.0" dependencies: - analyzer: ">=2.4.0 <3.4.0" - analyzer_plugin: ">=0.8.0 <0.10.0" + analyzer: ">=2.4.0 <4.1.0" + analyzer_plugin: ">=0.8.0 <0.11.0" ansicolor: ^2.0.1 args: ^2.0.0 collection: ^1.15.0 diff --git a/tools/analyzer_plugin/pubspec.yaml b/tools/analyzer_plugin/pubspec.yaml index 485572b118..a4dd8da0a3 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.15.0 +version: 4.15.1 environment: sdk: ">=2.14.0 <3.0.0" dependencies: - dart_code_metrics: ^4.15.0 + dart_code_metrics: ^4.15.1 dev_dependencies: lints: ^1.0.1 diff --git a/website/docs/getting-started/installation.md b/website/docs/getting-started/installation.md index 804dad08d0..12d76293a0 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.15.0 + dart_code_metrics: ^4.15.1 ``` and then run