From 88414c298d3cc3ac2c4ba7240bd207d8c2d5dd4a Mon Sep 17 00:00:00 2001 From: Quintin Willison Date: Wed, 5 May 2021 16:37:52 +0100 Subject: [PATCH] Fix warning generated by `flutter pub publish --dry-run`. 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. --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 924f92d62..a1beb8be2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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