From 548cbd41ff068cd7a23af924175ae5b9d9ad4bdd Mon Sep 17 00:00:00 2001 From: Phil Quitslund Date: Wed, 20 Oct 2021 09:12:34 -0700 Subject: [PATCH] 1.14.0 (#3038) --- CHANGELOG.md | 5 +++++ lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9471dd215..2238a23a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 1.14.0 + +- fix `omit_local_variable_types` to not flag a local type that is + required for inference + # 1.13.0 - allow `while (true) { ...}` in `literal_only_boolean_expressions` diff --git a/lib/src/version.dart b/lib/src/version.dart index ccb9d808c..140f7aba2 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.13.0'; +const String version = '1.14.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 448193ad4..0b0a595ce 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 1.13.0 +version: 1.14.0 description: >- The implementation of the lint rules supported by the analyzer framework.