diff --git a/CHANGELOG.md b/CHANGELOG.md index e3aee8b89..8d50a2534 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# 1.33.0 + +- fix `unnecessary_parenthesis` false-positive with null-aware expressions +- fix `void_checks` to allow assignments of `Future?` to parameters + typed `FutureOr?` +- removed support for: + - `enable_null_safety` + - `invariant_booleans` + - `prefer_bool_in_asserts` + - `prefer_equal_for_default_values` + - `super_goes_last` +- update `unnecessary_parenthesis` to detect some doubled parens +- update `void_checks` to allow returning `Never` as void +- new lint: `unnecessary_breaks` +- fix `use_build_context_synchronously` in if conditions +- update `no_adjacent_strings_in_list` to support set literals and for- and + if-elements + # 1.32.0 - update `avoid_types_as_parameter_names` to handle type variables diff --git a/lib/src/version.dart b/lib/src/version.dart index 8595e214a..0720c8cbf 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.32.0'; +const String version = '1.33.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 3b478dde3..e0027ef08 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 1.32.0 +version: 1.33.0 description: >- The implementation of the lint rules supported by the analyzer framework.