From 5ee639367abe5a381e7b71deb6822d7882369d60 Mon Sep 17 00:00:00 2001 From: Phil Quitslund Date: Tue, 12 Oct 2021 10:35:54 -0700 Subject: [PATCH] 1.13.0 (#3021) * 1.13.0 * 1.13.0 * + while(true) fix --- CHANGELOG.md | 8 ++++++++ lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb17ec302..9471dd215 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 1.13.0 + +- allow `while (true) { ...}` in `literal_only_boolean_expressions` +- fixed `file_names` to report at the start of the file (not the entire + compilation unit) +- fixed `prefer_collection_literals` named typed param false positive +- control flow improvements for `use_build_context_synchronously` + # 1.12.0 - fixed `unnecessary_lambdas` false positive for const constructor invocations diff --git a/lib/src/version.dart b/lib/src/version.dart index 48568144b..ccb9d808c 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.12.0'; +const String version = '1.13.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 97c90c18a..448193ad4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 1.12.0 +version: 1.13.0 description: >- The implementation of the lint rules supported by the analyzer framework.