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
dkrutskikh committed Jan 17, 2022
1 parent 818358d commit 12e34a6
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
9 changes: 4 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# Changelog

## Unreleased
## 4.10.0-dev.1

* fix: ignore private variables in `avoid-global-state` rule.
* feat: support excludes for a separate anti-pattern.
* chore: restrict `analyzer` version to `>=2.4.0 <3.2.0`.
* feat: add check unused code command.
* feat: support excludes for a separate anti-pattern.
* feat: ignore private members for `check-unused-l10n` command.
* chore: remove `@immutable` annotation from code.
* fix: ignore private variables in `avoid-global-state` rule.
* chore: restrict `analyzer` version to `>=2.4.0 <3.2.0`.

## 4.9.1

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.1
version: 4.10.0-dev.1
environment:
sdk: ">=2.14.0 <3.0.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ add it manually to `pubspec.yaml`

```yaml
dev_dependencies:
dart_code_metrics: ^4.9.1
dart_code_metrics: ^4.10.0-dev.1
```
and then run
Expand Down Expand Up @@ -119,8 +119,8 @@ The package can be used as CLI and supports multiple commands:
| Command | Example of use | Short description |
| ------------------ | --------------------------------------------------------- | --------------------------------------------------------- |
| analyze | dart run dart_code_metrics:metrics analyze lib | Reports code metrics, rules and anti-patterns violations. |
| check-unused-files | dart run dart_code_metrics:metrics check-unused-files lib | Checks unused \*.dart files. |
| check-unused-l10n | dart run dart_code_metrics:metrics check-unused-l10n lib | Check unused localization in *.dart files. |
| check-unused-files | dart run dart_code_metrics:metrics check-unused-files lib | Checks unused \*.dart files. |
| check-unused-l10n | dart run dart_code_metrics:metrics check-unused-l10n lib | Check unused localization in *.dart files. |

For additional help on any of the commands, enter `dart run dart_code_metrics:metrics help <command>`

Expand Down
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.9.1
version: 4.10.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
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.9.1
version: 4.10.0-dev.1

environment:
sdk: ">=2.14.0 <3.0.0"

dependencies:
dart_code_metrics: ^4.9.1
dart_code_metrics: ^4.10.0-dev.1

dev_dependencies:
lints: ^1.0.1
2 changes: 1 addition & 1 deletion website/docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ environment:
sdk: '>=2.12.0 <3.0.0'

dev_dependencies:
dart_code_metrics: ^4.9.1
dart_code_metrics: ^4.10.0-dev.1
```
and then run
Expand Down

0 comments on commit 12e34a6

Please sign in to comment.