diff --git a/CHANGELOG.md b/CHANGELOG.md index ff7fb4470..9ad3ee55c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.11.0 + +- added support for constructor tear-offs to `avoid_redundant_argument_values`, + `unnecessary_lambdas`, and `unnecessary_parenthesis` +- new lint: `unnecessary_constructor_name` to flag unnecessary uses of `.new` + # 1.10.0 - improved regular expression parsing performance for common checks diff --git a/lib/src/version.dart b/lib/src/version.dart index cfa8ec52e..47a1840f5 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.10.0'; +const String version = '1.11.0'; diff --git a/pubspec.yaml b/pubspec.yaml index d893a899b..73630c233 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 1.10.0 +version: 1.11.0 description: >- The implementation of the lint rules supported by the analyzer framework.