diff --git a/CHANGELOG.md b/CHANGELOG.md index da609dead..ab43b1858 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.128 + +* new lint: `avoid_dynamic_calls` +* (internal): updated `avoid_type_to_string` to use `addArgumentList` registry API +* documentation improvements + # 0.1.127 * fixed crash in `prefer_collection_literals` when there is no static parameter diff --git a/lib/src/version.dart b/lib/src/version.dart index 3455aca22..f55db6bca 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 = '0.1.127'; +const String version = '0.1.128'; diff --git a/pubspec.yaml b/pubspec.yaml index e76bda809..79fcf2cbc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 0.1.127 +version: 0.1.128 description: >- The implementation of the lint rules supported by the analyzer framework.