Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.

Commit dd11f49

Browse files
authored
1.34.0 (#4088)
* 1.34.0 * typo
1 parent d8cbbd7 commit dd11f49

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 1.34.0
2+
3+
- update `only_throw_errors` to not report on values of type `Never`
4+
- update `prefer_mixin` to handle class mixins
5+
- update `unnecessary_null_checks` to ignore `Future.value` and
6+
`Completer.complete`
7+
- fix `unnecessary_parenthesis` false positives on constant patterns
8+
- new lint: `invalid_case_patterns`
9+
- update `unnecessary_const` to handle case patterns
10+
- improve handling of null-aware cascades in `unnecessary_parenthesis`
11+
- update `unreachable_from_main` to report unreachable public static fields,
12+
getters, setters, and methods, that are declared on public classes, mixins,
13+
enums, and extensions
14+
115
# 1.33.0
216

317
- fix `unnecessary_parenthesis` false-positive with null-aware expressions

lib/src/version.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
/// Package version. Synchronized w/ pubspec.yaml.
6-
const String version = '1.33.0';
6+
const String version = '1.34.0';

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: linter
2-
version: 1.33.0
2+
version: 1.34.0
33

44
description: >-
55
The implementation of the lint rules supported by the analyzer framework.

0 commit comments

Comments
 (0)