From af5684b2e14eaea8569676f46325a7c50026cbcf Mon Sep 17 00:00:00 2001 From: Phil Quitslund Date: Tue, 20 Apr 2021 09:40:15 -0700 Subject: [PATCH] 1.4.0 (#2598) * 1.4.0 * 1.4.0 --- CHANGELOG.md | 6 +++++- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d23b80172..de03942e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ -# 1.3.1 +# 1.4.0 - `directives_ordering` now checks ordering of `package:` imports in code outside pub packages +- simple reachability analysis added to `use_build_context_synchronously` to + short-circuit await-discovery in terminating blocks +- `use_build_context_synchronously` updated to recognize nullable types when + accessed from legacy libraries # 1.3.0 diff --git a/lib/src/version.dart b/lib/src/version.dart index b511fdf9d..58963c0e0 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.3.0'; +const String version = '1.4.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 0e64f72a1..fbe2dbca3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 1.3.0 +version: 1.4.0 description: >- The implementation of the lint rules supported by the analyzer framework.