diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aae4e37dc..e149bb4d36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 5.5.1 * fix: export missing parts of public API. * feat: support `context.mounted` for [`use-setstate-synchronously`](https://dcm.dev/docs/individuals/rules/flutter/use-setstate-synchronously). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bbe2cd89b0..c3eb47ee87 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.5.0 + version: 5.5.1 environment: sdk: ">=2.18.0 <3.0.0" diff --git a/README.md b/README.md index 216f9a1ef8..1266274f48 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ add it manually to `pubspec.yaml` ```yaml dev_dependencies: - dart_code_metrics: ^5.5.0 + dart_code_metrics: ^5.5.1 ``` and then run diff --git a/lib/src/version.dart b/lib/src/version.dart index acb923d2be..b2a8cf3af9 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '5.5.0'; +const packageVersion = '5.5.1'; diff --git a/pubspec.yaml b/pubspec.yaml index c45881d7d2..ed58a40121 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,10 +1,10 @@ name: dart_code_metrics -version: 5.5.0 +version: 5.5.1 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 issue_tracker: https://github.com/dart-code-checker/dart-code-metrics/issues -documentation: https://dcm.dev/docs/individuals/getting-started/introduction +documentation: https://dcm.dev/docs/individuals/getting-started environment: sdk: ">=2.18.0 <3.0.0" diff --git a/tools/analyzer_plugin/pubspec.yaml b/tools/analyzer_plugin/pubspec.yaml index c97b0b5926..b65fdc699d 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.5.0 +version: 5.5.1 environment: sdk: ">=2.14.0 <3.0.0" dependencies: - dart_code_metrics: 5.5.0 + dart_code_metrics: 5.5.1 dev_dependencies: lints: ^1.0.1