Skip to content

Commit

Permalink
Fix warning generated by flutter pub publish --dry-run.
Browse files Browse the repository at this point in the history
Package validation found the following potential issue:
* The Flutter constraint should not have an upper bound.
  In your pubspec.yaml the constraint is currently `>=1.17.0 <2.0.0`.

  You can replace that with just the lower bound: `>=1.17.0`.

  See https://dart.dev/go/flutter-upper-bound-deprecation

Package has 1 warning.
  • Loading branch information
QuintinWillison committed May 5, 2021
1 parent a3d561a commit 88414c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repository: https://github.com/ably/ably-flutter

environment:
sdk: ">=2.6.0 <3.0.0"
flutter: ">=1.17.0 <2.0.0"
flutter: ">=1.17.0"

dependencies:
collection: ^1.14.13
Expand Down

0 comments on commit 88414c2

Please sign in to comment.