Skip to content

Commit 575feac

Browse files
chore: v10.1.0
1 parent e6b5e85 commit 575feac

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "10.1.0-rc.1"
2+
".": "10.1.0"
33
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ include: package:very_good_analysis/analysis_options.yaml
3535
This 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

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: very_good_analysis
2-
version: 10.1.0-rc.1
2+
version: 10.1.0
33
description: Lint rules for Dart and Flutter used internally at Very Good Ventures.
44
repository: https://github.com/VeryGoodOpenSource/very_good_analysis
55
issue_tracker: https://github.com/VeryGoodOpenSource/very_good_analysis/issues

tool/bump_version/lib/bump_version.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
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`.
1717
library;
1818

1919
import '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`.
3030
final _latestAnalysisVersionRegExp = RegExp(
3131
r'analysis_options\.(\d+\.\d+\.\d+)\.yaml',
3232
);

tool/linter_rules/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The script also accepts a specific version as an argument to analyze:
6060
dart 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

tool/linter_rules/test/src/all_vga_rules_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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, [

0 commit comments

Comments
 (0)