Skip to content

Commit

Permalink
1.34.0 (#4088)
Browse files Browse the repository at this point in the history
* 1.34.0

* typo
  • Loading branch information
pq authored Feb 23, 2023
1 parent d8cbbd7 commit dd11f49
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit dd11f49

Please sign in to comment.