From 1ddc70948d94f2449fec69a95e3ceb7b6b6c8348 Mon Sep 17 00:00:00 2001 From: Phil Quitslund Date: Tue, 7 Jun 2022 09:23:13 -0700 Subject: [PATCH] 1.25.0 (#3445) --- CHANGELOG.md | 9 +++++++++ lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ccabfc93..4b010a677 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 1.25.0 + +- new lint: `discarded_futures` +- improved message and highlight range for + `no_duplicate_case_values` +- performance improvements for `lines_longer_than_80_chars`, + `prefer_const_constructors_in_immutables`, and + `prefer_initializing_formals` + # 1.24.0 - fix `prefer_final_parameters` to support super parameters diff --git a/lib/src/version.dart b/lib/src/version.dart index a1c4f6c54..ee78046df 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.24.0'; +const String version = '1.25.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 91a8f1ce3..8cccfcb7b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 1.24.0 +version: 1.25.0 description: >- The implementation of the lint rules supported by the analyzer framework.