From dd11f49c529d8e7bbf351a978903da5fc1cb6e4a Mon Sep 17 00:00:00 2001 From: Phil Quitslund Date: Thu, 23 Feb 2023 09:14:59 -0800 Subject: [PATCH] 1.34.0 (#4088) * 1.34.0 * typo --- CHANGELOG.md | 14 ++++++++++++++ lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d50a2534..3f14ef889 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# 1.34.0 + +- update `only_throw_errors` to not report on values of type `Never` +- update `prefer_mixin` to handle class mixins +- update `unnecessary_null_checks` to ignore `Future.value` and + `Completer.complete` +- fix `unnecessary_parenthesis` false positives on constant patterns +- new lint: `invalid_case_patterns` +- update `unnecessary_const` to handle case patterns +- improve handling of null-aware cascades in `unnecessary_parenthesis` +- update `unreachable_from_main` to report unreachable public static fields, + getters, setters, and methods, that are declared on public classes, mixins, + enums, and extensions + # 1.33.0 - fix `unnecessary_parenthesis` false-positive with null-aware expressions diff --git a/lib/src/version.dart b/lib/src/version.dart index 0720c8cbf..7c4c10775 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.33.0'; +const String version = '1.34.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 9f6b74b9e..046f3ef7f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 1.33.0 +version: 1.34.0 description: >- The implementation of the lint rules supported by the analyzer framework.