Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix version constraints #207

Merged
merged 1 commit into from Sep 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions pubspec.yaml
Expand Up @@ -5,8 +5,8 @@ homepage: https://github.com/ubuntu/yaru_widgets.dart
version: 1.1.3

environment:
sdk: ">=2.17.0 <3.3.2"
flutter: ">=3.3.2"
sdk: ">=2.17.0 <3.0.0"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is the Dart SDK i.e. the language version. anything less than 3.0 is accepted but 3.0 is not because it's going to incompatible

flutter: ">=3.3.0"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

people are strongly encouraged to upgrade to 3.3.2 because of the important bug fixes but technically (API-wise) only 3.3.0 is required


dependencies:
flutter:
Expand Down