diff --git a/packages/custom_lint/CHANGELOG.md b/packages/custom_lint/CHANGELOG.md index 5a884973..173f0c26 100644 --- a/packages/custom_lint/CHANGELOG.md +++ b/packages/custom_lint/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased minor +## 0.4.0 - 2023-05-12 - Report uncaught exceptions inside `context.addPostRunCallback` - Added support for analyzer 5.12.0 diff --git a/packages/custom_lint/example/example_lint/pubspec.yaml b/packages/custom_lint/example/example_lint/pubspec.yaml index 7116ee13..d2c27da3 100644 --- a/packages/custom_lint/example/example_lint/pubspec.yaml +++ b/packages/custom_lint/example/example_lint/pubspec.yaml @@ -1,5 +1,5 @@ name: custom_lint_example_lint -version: 0.0.2 +version: 0.0.3 publish_to: none environment: diff --git a/packages/custom_lint/pubspec.yaml b/packages/custom_lint/pubspec.yaml index 8c022aa3..085558f5 100644 --- a/packages/custom_lint/pubspec.yaml +++ b/packages/custom_lint/pubspec.yaml @@ -1,5 +1,5 @@ name: custom_lint -version: 0.3.4 +version: 0.4.0 description: Lint rules are a powerful way to improve the maintainability of a project. Custom Lint allows package authors and developers to easily write custom lint rules. repository: https://github.com/invertase/dart_custom_lint issue_tracker: https://github.com/invertase/dart_custom_lint/issues diff --git a/packages/custom_lint/tools/analyzer_plugin/pubspec.yaml b/packages/custom_lint/tools/analyzer_plugin/pubspec.yaml index 4f4c094a..f16c9b80 100644 --- a/packages/custom_lint/tools/analyzer_plugin/pubspec.yaml +++ b/packages/custom_lint/tools/analyzer_plugin/pubspec.yaml @@ -1,13 +1,13 @@ name: custom_lint_analyzer_plugin_loader description: This pubspec determines the version of the analyzer plugin to load. -version: 0.3.4 +version: 0.4.0 publish_to: none environment: sdk: ">=2.14.0 <3.0.0" dependencies: - custom_lint: 0.3.4 + custom_lint: 0.4.0 # TODO: If you want to contribute to custom_lint, add a pubspec_overrides.yaml file # in this folder, containing the following: diff --git a/packages/custom_lint_builder/CHANGELOG.md b/packages/custom_lint_builder/CHANGELOG.md index 7425dceb..0fc77601 100644 --- a/packages/custom_lint_builder/CHANGELOG.md +++ b/packages/custom_lint_builder/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased minor +## 0.4.0 - 2023-05-12 - Report uncaught exceptions inside `context.addPostRunCallback` - Added support for analyzer 5.12.0 diff --git a/packages/custom_lint_builder/example/example_lint/pubspec.yaml b/packages/custom_lint_builder/example/example_lint/pubspec.yaml index 47071dba..04c541a3 100644 --- a/packages/custom_lint_builder/example/example_lint/pubspec.yaml +++ b/packages/custom_lint_builder/example/example_lint/pubspec.yaml @@ -1,5 +1,5 @@ name: custom_lint_builder_example_lint -version: 0.0.2 +version: 0.0.3 publish_to: none environment: diff --git a/packages/custom_lint_builder/pubspec.yaml b/packages/custom_lint_builder/pubspec.yaml index 7cdfa8bb..c7b8d3b3 100644 --- a/packages/custom_lint_builder/pubspec.yaml +++ b/packages/custom_lint_builder/pubspec.yaml @@ -1,5 +1,5 @@ name: custom_lint_builder -version: 0.3.4 +version: 0.4.0 description: A package to help writing custom linters repository: https://github.com/invertase/dart_custom_lint @@ -12,10 +12,10 @@ dependencies: collection: ^1.16.0 # Using tight constraints as custom_lint_builder communicate with each-other # using a specific contract - custom_lint: 0.3.4 + custom_lint: 0.4.0 # Using tight constraints as custom_lint_builder communicate with each-other # using a specific contract - custom_lint_core: 0.3.4 + custom_lint_core: 0.4.0 glob: ^2.1.1 hotreloader: ^3.0.5 meta: ^1.7.0 diff --git a/packages/custom_lint_core/CHANGELOG.md b/packages/custom_lint_core/CHANGELOG.md index 4925a19c..015bb702 100644 --- a/packages/custom_lint_core/CHANGELOG.md +++ b/packages/custom_lint_core/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased minor +## 0.4.0 - 2023-05-12 - Added support for analyzer 5.12.0 diff --git a/packages/custom_lint_core/pubspec.yaml b/packages/custom_lint_core/pubspec.yaml index 46ef966e..e9f1df62 100644 --- a/packages/custom_lint_core/pubspec.yaml +++ b/packages/custom_lint_core/pubspec.yaml @@ -1,5 +1,5 @@ name: custom_lint_core -version: 0.3.4 +version: 0.4.0 description: A package to help writing custom linters repository: https://github.com/invertase/dart_custom_lint @@ -12,7 +12,7 @@ dependencies: collection: ^1.16.0 # Using tight constraints as custom_lint_builder communicate with each-other # using a specific contract - custom_lint: 0.3.4 + custom_lint: 0.4.0 matcher: ^0.12.0 meta: ^1.7.0 path: ^1.8.0