From 618e7c64543671245db9e80ce37e120f67b056d1 Mon Sep 17 00:00:00 2001 From: Phil Quitslund Date: Wed, 3 Mar 2021 09:36:24 -0800 Subject: [PATCH] 1.0.0 (#2487) --- CHANGELOG.md | 8 ++++++++ lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 970de7b83..68595a729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 1.0.0 + +- full library migration to null-safety +- new lint: `use_if_null_to_convert_nulls_to_bools` +- new lint: `deprecated_consistency` +- new lint: `use_named_constants` +- deprecation of `avoid_as` + # 0.1.129 - fixed a bug where `avoid_dynamic_calls` produced false-positives for `.call()` diff --git a/lib/src/version.dart b/lib/src/version.dart index 89e57c708..1b138f4d6 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.129'; +const String version = '1.0.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 139b9646f..0dde76e85 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: linter -version: 0.1.129 +version: 1.0.0 description: >- The implementation of the lint rules supported by the analyzer framework.