Skip to content

Commit 8ce3a40

Browse files
🩹Downgrade flutter_lint version (#348)
1 parent 6995096 commit 8ce3a40

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.1.1
2+
3+
- Downgrade flutter_lint version to support flutter version 3.10.x
4+
15
## 1.1.0
26

37
- Update flutter and dart version

analysis_options.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
include: package:flutter_lints/flutter.yaml
22

33
analyzer:
4+
## TODO(Jay): Make this both rules false when we upgrade the flutter_lint version
45
strong-mode:
5-
implicit-casts: false
6-
implicit-dynamic: false
6+
implicit-casts: true
7+
implicit-dynamic: true
78
errors:
89
argument_type_not_assignable: error
910
invalid_assignment: error

example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Demonstrates how to use the audio_waveforms plugin.
66
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
77

88
environment:
9-
sdk: ">=3.1.0 <4.0.0"
9+
sdk: ">=3.0.0 <4.0.0"
1010

1111
# Dependencies specify other packages that your package needs in order to work.
1212
# To automatically upgrade your package dependencies to the latest versions
@@ -41,7 +41,7 @@ dev_dependencies:
4141
# activated in the `analysis_options.yaml` file located at the root of your
4242
# package. See that file for information about deactivating specific lint
4343
# rules and activating additional ones.
44-
flutter_lints: ^2.0.1
44+
flutter_lints: ^3.0.0
4545

4646
# For information on the generic Dart part of this file, see the
4747
# following page: https://dart.dev/tools/pub/pubspec

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: audio_waveforms
22
description: A Flutter package that allow you to generate waveform while recording audio or from audio file.
3-
version: 1.1.0
3+
version: 1.1.1
44
homepage: https://github.com/SimformSolutionsPvtLtd/audio_waveforms
55
issue_tracker: https://github.com/SimformSolutionsPvtLtd/audio_waveforms/issues
66

@@ -15,7 +15,7 @@ dependencies:
1515
dev_dependencies:
1616
flutter_test:
1717
sdk: flutter
18-
flutter_lints: ^5.0.0
18+
flutter_lints: ^3.0.0
1919

2020

2121
flutter:

0 commit comments

Comments
 (0)