Skip to content

Commit

Permalink
The following packages have been updated:
Browse files Browse the repository at this point in the history
custom_lint_core    : 0.6.0 -> 0.6.1
custom_lint_builder : 0.6.0 -> 0.6.1
  • Loading branch information
rrousselGit committed Feb 14, 2024
1 parent eb2ca97 commit 6a3da51
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions packages/custom_lint_builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.6.1 - 2024-02-14

- `custom_lint_core` upgraded to `0.6.1`

## 0.6.0 - 2024-02-04

- Bumped minimum Dart SDK to 3.0.0
Expand Down
4 changes: 2 additions & 2 deletions packages/custom_lint_builder/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: custom_lint_builder
version: 0.6.0
version: 0.6.1
description: A package to help writing custom linters
repository: https://github.com/invertase/dart_custom_lint

Expand All @@ -15,7 +15,7 @@ dependencies:
custom_lint: ^0.6.0
# Using tight constraints as custom_lint_builder communicate with each-other
# using a specific contract
custom_lint_core: 0.6.0
custom_lint_core: 0.6.1
glob: ^2.1.1
hotreloader: ">=3.0.5 <5.0.0"
meta: ^1.7.0
Expand Down
4 changes: 4 additions & 0 deletions packages/custom_lint_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.6.1 - 2024-02-14

- Exported `NodeLintRegistry`

## 0.6.0 - 2024-02-04

- Bumped minimum Dart SDK to 3.0.0
Expand Down
3 changes: 1 addition & 2 deletions packages/custom_lint_core/lib/custom_lint_core.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ export 'src/fixes.dart';
export 'src/lint_codes.dart';
export 'src/lint_rule.dart';
export 'src/matcher.dart';
export 'src/node_lint_visitor.dart'
hide LintRegistry, LinterVisitor, NodeLintRegistry;
export 'src/node_lint_visitor.dart' hide LintRegistry, LinterVisitor;
export 'src/plugin_base.dart' hide runPostRunCallbacks;
export 'src/resolver.dart' hide CustomLintResolverImpl;
export 'src/source_range_extensions.dart';
Expand Down
1 change: 0 additions & 1 deletion packages/custom_lint_core/lib/src/node_lint_visitor.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/custom_lint_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: custom_lint_core
version: 0.6.0
version: 0.6.1
description: A package to help writing custom linters
repository: https://github.com/invertase/dart_custom_lint

Expand Down

0 comments on commit 6a3da51

Please sign in to comment.