File tree Expand file tree Collapse file tree 7 files changed +13
-9
lines changed
Expand file tree Collapse file tree 7 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 10.1.0-rc.1 "
2+ "." : " 10.1.0"
33}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 10.1.0] ( https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v10.0.0...v10.1.0 ) (2025-11-28)
4+
5+ * chore: release 10.1.0-rc.1 [ 184] ( https://github.com/VeryGoodOpenSource/very_good_analysis/pull/184 )
6+
37## [ 10.1.0-rc.1] ( https://github.com/VeryGoodOpenSource/very_good_analysis/compare/v10.0.0...v10.1.0-rc.1 ) (2025-11-27)
48
59
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ include: package:very_good_analysis/analysis_options.yaml
3535This will ensure you always use the latest version of the lints. If you wish to restrict the lint version, specify a version of ` analysis_options.yaml` instead:
3636
3737` ` ` yaml
38- include: package:very_good_analysis/analysis_options.10.0 .0.yaml
38+ include: package:very_good_analysis/analysis_options.10.1 .0.yaml
3939` ` `
4040
4141# # Suppressing Lints
@@ -118,7 +118,7 @@ Below is a list of rules that are not enabled by default together with the reaso
118118| [`use_decorated_box`](https://dart.dev/tools/linter-rules/use_decorated_box) | [Has unresolved malfunctions](https://github.com/dart-lang/linter/issues/3286) |
119119<!-- end:excluded_rules_table -->
120120
121- [analysis_options_yaml] : https://github.com/VeryGoodOpenSource/very_good_analysis/blob/main/lib/analysis_options.10.0 .0.yaml
121+ [analysis_options_yaml] : https://github.com/VeryGoodOpenSource/very_good_analysis/blob/main/lib/analysis_options.10.1 .0.yaml
122122[ci_badge] : https://github.com/VeryGoodOpenSource/very_good_analysis/workflows/ci/badge.svg
123123[ci_badge_link] : https://github.com/VeryGoodOpenSource/very_good_analysis/actions
124124[badge] : https://img.shields.io/badge/style-very_good_analysis-B22C89.svg
Original file line number Diff line number Diff line change 11name : very_good_analysis
2- version : 10.1.0-rc.1
2+ version : 10.1.0
33description : Lint rules for Dart and Flutter used internally at Very Good Ventures.
44repository : https://github.com/VeryGoodOpenSource/very_good_analysis
55issue_tracker : https://github.com/VeryGoodOpenSource/very_good_analysis/issues
Original file line number Diff line number Diff line change 1313/// ```
1414///
1515/// Where `<new_version>` is the new version to bump to in the format `x.y.z` .
16- /// For example: `10.0 .0` .
16+ /// For example: `10.1 .0` .
1717library ;
1818
1919import 'dart:io' ;
@@ -23,10 +23,10 @@ import 'dart:io';
2323/// Given the following:
2424///
2525/// ```sh
26- /// include: package:very_good_analysis/analysis_options.10.0 .0.yaml
26+ /// include: package:very_good_analysis/analysis_options.10.1 .0.yaml
2727/// ```
2828///
29- /// It is expected that the first matched group will be `10.0 .0` .
29+ /// It is expected that the first matched group will be `10.1 .0` .
3030final _latestAnalysisVersionRegExp = RegExp (
3131 r'analysis_options\.(\d+\.\d+\.\d+)\.yaml' ,
3232);
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ The script also accepts a specific version as an argument to analyze:
6060dart bin/analyze.dart $version
6161```
6262
63- Where version is the existing Very Good Analysis version you would like to analyze, for example ` 10.0 .0 ` .
63+ Where version is the existing Very Good Analysis version you would like to analyze, for example ` 10.1 .0 ` .
6464
6565## Check and remove deprecated rules 🔍
6666
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ void main() {
66 test ('returns all very good analysis rules' , () async {
77 final rules = await allVeryGoodAnalysisRules (
88 filePath: 'test/test_data' ,
9- version: '10.0 .0' ,
9+ version: '10.1 .0' ,
1010 );
1111
1212 expect (rules, [
You can’t perform that action at this time.
0 commit comments