From f9aee2caa73fe056c30e298dd03784fb919fc7d3 Mon Sep 17 00:00:00 2001 From: Phil Quitslund Date: Fri, 6 Nov 2020 11:02:10 -0800 Subject: [PATCH] 0.1.124 (#2337) --- CHANGELOG.md | 5 +++++ lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc65007af..45973b4db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.1.124 + +* fixed false positives in `prefer_constructors_over_static_methods` +* updated `package_names` to allow leading underscores + # 0.1.123 * fixed NPEs in `unnecessary_null_checks` diff --git a/lib/src/version.dart b/lib/src/version.dart index 0c7b3a3f5..c15adf2d2 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.123'; +const String version = '0.1.124'; diff --git a/pubspec.yaml b/pubspec.yaml index b0295e715..47127b617 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 0.1.123 +version: 0.1.124 description: >- The implementation of the lint rules supported by the analyzer framework.