From 14442cab83b51c997a912038d5b198bd7186e621 Mon Sep 17 00:00:00 2001 From: vxern Date: Sat, 13 May 2023 11:23:44 +0100 Subject: [PATCH] fix: Wrong option (`strong-mode` -> `language`). --- CHANGELOG.md | 5 +++++ lib/core.yaml | 2 +- pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ddd0186..06e1a76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.3.1 + +- Fix wrong option being defined in `core.yaml` (`strong-mode` instead of + `language`). + ## 0.3.0 - Added: (Added together with Dart `2.19.0` in linter version `1.31.0`) diff --git a/lib/core.yaml b/lib/core.yaml index cf31c64..2430954 100644 --- a/lib/core.yaml +++ b/lib/core.yaml @@ -1,5 +1,5 @@ analyzer: - strong-mode: + language: strict-casts: true strict-inference: true strict-raw-types: true diff --git a/pubspec.yaml b/pubspec.yaml index feca010..f88f401 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: words -version: 0.3.0 +version: 0.3.1 description: >- A curated collection of lints for use by Dart packages to ensure