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

Commit a2b19bb

Browse files
authored
1.33.0 (#4040)
* 1.33.0 * name
1 parent 79fb9c1 commit a2b19bb

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# 1.33.0
2+
3+
- fix `unnecessary_parenthesis` false-positive with null-aware expressions
4+
- fix `void_checks` to allow assignments of `Future<dynamic>?` to parameters
5+
typed `FutureOr<void>?`
6+
- removed support for:
7+
- `enable_null_safety`
8+
- `invariant_booleans`
9+
- `prefer_bool_in_asserts`
10+
- `prefer_equal_for_default_values`
11+
- `super_goes_last`
12+
- update `unnecessary_parenthesis` to detect some doubled parens
13+
- update `void_checks` to allow returning `Never` as void
14+
- new lint: `unnecessary_breaks`
15+
- fix `use_build_context_synchronously` in if conditions
16+
- update `no_adjacent_strings_in_list` to support set literals and for- and
17+
if-elements
18+
119
# 1.32.0
220

321
- update `avoid_types_as_parameter_names` to handle type variables

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.32.0';
6+
const String version = '1.33.0';

pubspec.yaml

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

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

0 commit comments

Comments
 (0)