Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Commit

Permalink
build: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
incendial committed Oct 31, 2022
1 parent 6691810 commit 3c37770
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const packageVersion = '4.21.2';
const packageVersion = '5.0.0';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions tools/analyzer_plugin/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions website/docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3c37770

Please sign in to comment.