From 3c3777045f67347ca57dd728fd33441720f1f564 Mon Sep 17 00:00:00 2001 From: Dmitry Zhifarsky Date: Mon, 31 Oct 2022 22:55:09 +0400 Subject: [PATCH] build: update version --- CHANGELOG.md | 2 +- CONTRIBUTING.md | 4 ++-- README.md | 2 +- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- tools/analyzer_plugin/pubspec.yaml | 4 ++-- website/docs/getting-started/installation.md | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e61dac9d1..37fcd55cd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 5.0.0 * feat: **Breaking change** rename `member-ordering-extended` to `member-ordering`, discarding the old implementation. * feat: support report to the json file option for the `analyze` command. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fe9e46972a..891fcc862f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -89,10 +89,10 @@ 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.21.2 + version: 5.0.0 environment: - sdk: ">=2.17.0 <3.0.0" + sdk: ">=2.18.0 <3.0.0" dependencies: dart_code_metrics: diff --git a/README.md b/README.md index 308e2884bc..8cdec28ade 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ add it manually to `pubspec.yaml` ```yaml dev_dependencies: - dart_code_metrics: ^4.21.2 + dart_code_metrics: ^5.0.0 ``` and then run diff --git a/lib/src/version.dart b/lib/src/version.dart index 4846a2c815..92cae6b698 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '4.21.2'; +const packageVersion = '5.0.0'; diff --git a/pubspec.yaml b/pubspec.yaml index da840f1e2f..00d9623aab 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dart_code_metrics -version: 4.21.2 +version: 5.0.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 478361e45f..5b66cf2a64 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.21.2 +version: 5.0.0 environment: sdk: ">=2.14.0 <3.0.0" dependencies: - dart_code_metrics: 4.21.2 + dart_code_metrics: 5.0.0 dev_dependencies: lints: ^1.0.1 diff --git a/website/docs/getting-started/installation.md b/website/docs/getting-started/installation.md index 684cf35ea3..a9a1c9d76c 100644 --- a/website/docs/getting-started/installation.md +++ b/website/docs/getting-started/installation.md @@ -20,10 +20,10 @@ add it manually to `pubspec.yaml` ```yaml title="pubspec.yaml" environment: - sdk: '>=2.17.0 <3.0.0' + sdk: '>=2.18.0 <3.0.0' dev_dependencies: - dart_code_metrics: ^4.21.2 + dart_code_metrics: ^5.0.0 ``` and then run