From 8f54a2ad11d7b62979794b560786f8062b67b1bc Mon Sep 17 00:00:00 2001 From: Remi Rousselet Date: Thu, 26 Oct 2023 12:08:25 +0200 Subject: [PATCH] custom_lint : 0.5.4 -> 0.5.5 custom_lint_analyzer_plugin_loader : 0.5.4 -> 0.5.5 custom_lint_core : 0.5.4 -> 0.5.5 custom_lint_builder : 0.5.4 -> 0.5.5 custom_lint_builder_example_lint : 0.0.8 -> 0.0.9 custom_lint_example_lint : 0.0.8 -> 0.0.9 --- packages/custom_lint/CHANGELOG.md | 2 +- packages/custom_lint/example/example_lint/pubspec.yaml | 2 +- packages/custom_lint/pubspec.yaml | 2 +- packages/custom_lint/tools/analyzer_plugin/pubspec.yaml | 4 ++-- packages/custom_lint_builder/CHANGELOG.md | 5 +++++ .../custom_lint_builder/example/example_lint/pubspec.yaml | 2 +- packages/custom_lint_builder/pubspec.yaml | 6 +++--- packages/custom_lint_core/CHANGELOG.md | 4 ++++ packages/custom_lint_core/pubspec.yaml | 4 ++-- 9 files changed, 20 insertions(+), 11 deletions(-) diff --git a/packages/custom_lint/CHANGELOG.md b/packages/custom_lint/CHANGELOG.md index d66265a0..f0a687f6 100644 --- a/packages/custom_lint/CHANGELOG.md +++ b/packages/custom_lint/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased patch +## 0.5.5 - 2023-10-26 - Support `hotreloader` 4.0.0 diff --git a/packages/custom_lint/example/example_lint/pubspec.yaml b/packages/custom_lint/example/example_lint/pubspec.yaml index 32757712..071493b2 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.8 +version: 0.0.9 publish_to: none environment: diff --git a/packages/custom_lint/pubspec.yaml b/packages/custom_lint/pubspec.yaml index ad3145ca..5f114132 100644 --- a/packages/custom_lint/pubspec.yaml +++ b/packages/custom_lint/pubspec.yaml @@ -1,5 +1,5 @@ name: custom_lint -version: 0.5.4 +version: 0.5.5 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 e80c6a53..e87d3141 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.5.4 +version: 0.5.5 publish_to: none environment: sdk: ">=2.14.0 <4.0.0" dependencies: - custom_lint: 0.5.4 + custom_lint: 0.5.5 # 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 75b20225..e3ed31bf 100644 --- a/packages/custom_lint_builder/CHANGELOG.md +++ b/packages/custom_lint_builder/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.5.5 - 2023-10-26 + +- `custom_lint` upgraded to `0.5.5` +- `custom_lint_core` upgraded to `0.5.5` + ## 0.5.4 - 2023-10-20 - `custom_lint` upgraded to `0.5.4` diff --git a/packages/custom_lint_builder/example/example_lint/pubspec.yaml b/packages/custom_lint_builder/example/example_lint/pubspec.yaml index 5f67486f..8ec27ede 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.8 +version: 0.0.9 publish_to: none environment: diff --git a/packages/custom_lint_builder/pubspec.yaml b/packages/custom_lint_builder/pubspec.yaml index 99d5791d..ee203da4 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.5.4 +version: 0.5.5 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.5.4 + custom_lint: 0.5.5 # Using tight constraints as custom_lint_builder communicate with each-other # using a specific contract - custom_lint_core: 0.5.4 + custom_lint_core: 0.5.5 glob: ^2.1.1 hotreloader: ">=3.0.5 <5.0.0" meta: ^1.7.0 diff --git a/packages/custom_lint_core/CHANGELOG.md b/packages/custom_lint_core/CHANGELOG.md index 4a4fcdcd..121bce5d 100644 --- a/packages/custom_lint_core/CHANGELOG.md +++ b/packages/custom_lint_core/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.5.5 - 2023-10-26 + +- `custom_lint` upgraded to `0.5.5` + ## 0.5.4 - 2023-10-20 - `custom_lint` upgraded to `0.5.4` diff --git a/packages/custom_lint_core/pubspec.yaml b/packages/custom_lint_core/pubspec.yaml index bd081560..0949c6c6 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.5.4 +version: 0.5.5 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.5.4 + custom_lint: 0.5.5 matcher: ^0.12.0 meta: ^1.7.0 path: ^1.8.0