From 0edaad7c29e657ace44a429e8766ffcc98b93c97 Mon Sep 17 00:00:00 2001 From: Dmitry Krutskikh Date: Wed, 9 Feb 2022 20:21:13 +0300 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 91a15ce6f6..9f26b240bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 4.11.0-dev.1 * fix: move byte store out of driver creation to reuse it between multiple plugins. * fix: add `monorepo` flag for `check-unused-code` command. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ef8ef27b32..bef1c03cb5 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.10.1 + version: 4.11.0-dev.1 environment: sdk: ">=2.14.0 <3.0.0" diff --git a/README.md b/README.md index 71dcdfc436..340abc7999 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ add it manually to `pubspec.yaml` ```yaml dev_dependencies: - dart_code_metrics: ^4.10.1 + dart_code_metrics: ^4.11.0-dev.1 ``` and then run diff --git a/lib/src/version.dart b/lib/src/version.dart index 4d4d4f150a..887ef9815e 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '4.10.1'; +const packageVersion = '4.11.0-dev.1'; diff --git a/pubspec.yaml b/pubspec.yaml index 0adfaa636c..2b2e2c9c68 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dart_code_metrics -version: 4.10.1 +version: 4.11.0-dev.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 diff --git a/tools/analyzer_plugin/pubspec.yaml b/tools/analyzer_plugin/pubspec.yaml index 85d4cc64cf..c4c9c98c33 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.10.1 +version: 4.11.0-dev.1 environment: sdk: ">=2.14.0 <3.0.0" dependencies: - dart_code_metrics: ^4.10.1 + dart_code_metrics: ^4.11.0-dev.1 dev_dependencies: lints: ^1.0.1 diff --git a/website/docs/getting-started/installation.md b/website/docs/getting-started/installation.md index 8f3a8f0e48..f5bf177f32 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.10.1 + dart_code_metrics: ^4.11.0-dev.1 ``` and then run