Skip to content

Commit 6a3da51

Browse files
committed
The following packages have been updated:
custom_lint_core : 0.6.0 -> 0.6.1 custom_lint_builder : 0.6.0 -> 0.6.1
1 parent eb2ca97 commit 6a3da51

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

packages/custom_lint_builder/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.1 - 2024-02-14
2+
3+
- `custom_lint_core` upgraded to `0.6.1`
4+
15
## 0.6.0 - 2024-02-04
26

37
- Bumped minimum Dart SDK to 3.0.0

packages/custom_lint_builder/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: custom_lint_builder
2-
version: 0.6.0
2+
version: 0.6.1
33
description: A package to help writing custom linters
44
repository: https://github.com/invertase/dart_custom_lint
55

@@ -15,7 +15,7 @@ dependencies:
1515
custom_lint: ^0.6.0
1616
# Using tight constraints as custom_lint_builder communicate with each-other
1717
# using a specific contract
18-
custom_lint_core: 0.6.0
18+
custom_lint_core: 0.6.1
1919
glob: ^2.1.1
2020
hotreloader: ">=3.0.5 <5.0.0"
2121
meta: ^1.7.0

packages/custom_lint_core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.1 - 2024-02-14
2+
3+
- Exported `NodeLintRegistry`
4+
15
## 0.6.0 - 2024-02-04
26

37
- Bumped minimum Dart SDK to 3.0.0

packages/custom_lint_core/lib/custom_lint_core.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ export 'src/fixes.dart';
55
export 'src/lint_codes.dart';
66
export 'src/lint_rule.dart';
77
export 'src/matcher.dart';
8-
export 'src/node_lint_visitor.dart'
9-
hide LintRegistry, LinterVisitor, NodeLintRegistry;
8+
export 'src/node_lint_visitor.dart' hide LintRegistry, LinterVisitor;
109
export 'src/plugin_base.dart' hide runPostRunCallbacks;
1110
export 'src/resolver.dart' hide CustomLintResolverImpl;
1211
export 'src/source_range_extensions.dart';

packages/custom_lint_core/lib/src/node_lint_visitor.g.dart

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/custom_lint_core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: custom_lint_core
2-
version: 0.6.0
2+
version: 0.6.1
33
description: A package to help writing custom linters
44
repository: https://github.com/invertase/dart_custom_lint
55

0 commit comments

Comments
 (0)