From b4afc10055f3009478da1eac1827f9fef42c3759 Mon Sep 17 00:00:00 2001 From: Phil Quitslund Date: Mon, 11 Jul 2022 09:07:50 -0700 Subject: [PATCH] 1.26.0 (#3499) * 1.26.0 * de-dup * + combinators_ordering --- CHANGELOG.md | 14 +++++++++++++- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70bffbdab..b6f5d83a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,19 @@ -# 1.26.0-dev +# 1.26.0 +- new lint: `combinators_ordering` +- fixed `use_colored_box` and `use_decorated_box` to not over-report + on containers without a child - fixed false positive for `unnecessary_parenthesis` on a map-or-set literal at the start of an expression statement +- fixed false positive for `prefer_final_locals` reporting on fields +- fixed `unnecessary_overrides` to allow overrides on `@Protected` + members +- fixed `avoid_multiple_declarations_per_line` false positive in + `for` statements +- fixed `prefer_final_locals` false positive on declaration lists + with at least one non-final variable +- fixed `use_build_context_synchronously` to handle `await`s in + `if` conditions # 1.25.0 diff --git a/lib/src/version.dart b/lib/src/version.dart index 192684274..2a919c31d 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -3,4 +3,4 @@ // BSD-style license that can be found in the LICENSE file. /// Package version. Synchronized w/ pubspec.yaml. -const String version = '1.26.0-dev'; +const String version = '1.26.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 448dc40d6..bd51b7e47 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 1.26.0-dev +version: 1.26.0 description: >- The implementation of the lint rules supported by the analyzer framework.