From 13ed23aa1d9fabc9f4ed84f2d2416e7369a805c1 Mon Sep 17 00:00:00 2001 From: Ryunosuke Muramatsu Date: Thu, 21 Aug 2025 08:43:09 +0900 Subject: [PATCH 1/2] chore(release): publish packages - altive_lints@1.22.0 --- packages/altive_lints/CHANGELOG.md | 5 +++++ packages/altive_lints/pubspec.yaml | 2 +- packages/diffscrape/pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/altive_lints/CHANGELOG.md b/packages/altive_lints/CHANGELOG.md index 10f88b6..991a9af 100644 --- a/packages/altive_lints/CHANGELOG.md +++ b/packages/altive_lints/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.22.0 + + - **FEAT**: Update all lint rules (#105). + - **FEAT**: update avoid_single_child lint to include SliverMainAxisGroup and SliverCrossAxisGroup (#103). + ## 1.21.0 - **FIX**: disable `omit_obvious_property_types` and `unsafe_variance` ([#101](https://github.com/altive/altive_lints/issues/101)). ([68727270](https://github.com/altive/altive_lints/commit/68727270dbb8979ea2476e66a8c4ed6fa6d7f0e5)) diff --git a/packages/altive_lints/pubspec.yaml b/packages/altive_lints/pubspec.yaml index 3de6bd3..d231544 100644 --- a/packages/altive_lints/pubspec.yaml +++ b/packages/altive_lints/pubspec.yaml @@ -2,7 +2,7 @@ name: altive_lints description: >- Provides `all_lint_rules.yaml` that activates all rules and `altive_lints.yaml` with Altive recommended rule selection. -version: 1.21.0 +version: 1.22.0 homepage: https://altive.dev repository: https://github.com/altive/altive_lints issue_tracker: https://github.com/altive/altive_lints/issues diff --git a/packages/diffscrape/pubspec.yaml b/packages/diffscrape/pubspec.yaml index aaf4a98..99c6331 100644 --- a/packages/diffscrape/pubspec.yaml +++ b/packages/diffscrape/pubspec.yaml @@ -15,5 +15,5 @@ dependencies: http: ^1.4.0 dev_dependencies: - altive_lints: ^1.21.0 + altive_lints: ^1.22.0 test: ^1.26.2 From 7845f1cba40c130345bacf824703ae6a8071bb25 Mon Sep 17 00:00:00 2001 From: Ryunosuke Muramatsu Date: Thu, 21 Aug 2025 08:48:39 +0900 Subject: [PATCH 2/2] update changelog --- docs/CONTRIBUTING.md | 3 ++- packages/altive_lints/CHANGELOG.md | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 2615302..92d9d2e 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -8,11 +8,12 @@ TODO 1. Create a release branch. - `git switch -c release` & `git push -u origin release` + - If the release branch already exists, delete it. 1. Create a release commit. - `melos version` 1. Push a commit with a tag. - `git push origin release --tags` - - Open a pull-request. + - Open a pull-request. (`gh pr create --fill`) 1. Merge after approving pull-request. 1. Publish to pub.dev. - `melos publish` on the `main` branch. diff --git a/packages/altive_lints/CHANGELOG.md b/packages/altive_lints/CHANGELOG.md index 991a9af..f57f320 100644 --- a/packages/altive_lints/CHANGELOG.md +++ b/packages/altive_lints/CHANGELOG.md @@ -1,7 +1,11 @@ ## 1.22.0 - **FEAT**: Update all lint rules (#105). + - Added + - [switch_on_type](https://dart.dev/tools/linter-rules/switch_on_type) + - [unnecessary_unawaited](https://dart.dev/tools/linter-rules/unnecessary_unawaited) - **FEAT**: update avoid_single_child lint to include SliverMainAxisGroup and SliverCrossAxisGroup (#103). + - Update the minimum Dart SDK version to 3.5.0. (using pub_workspace and Melos v7) ## 1.21.0