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: correct package_info_plus version constraint #4583

Merged
merged 1 commit into from Mar 21, 2024
Merged
Show file tree
Hide file tree
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
Expand Up @@ -28,7 +28,7 @@ dependencies:
flutter:
sdk: flutter
meta: ^1.7.0
package_info_plus: ">=4.0.1 <=6.0.0"
package_info_plus: ">=4.0.1 <6.0.0"
path_provider: ^2.0.0

dev_dependencies:
Expand Down
Expand Up @@ -23,7 +23,7 @@ dependencies:
intl: ">=0.18.0 <1.0.0"
meta: ^1.7.0
# TODO(equartey): Remove this once we have our own method of getting the app name
package_info_plus: ">=4.0.1 <=6.0.0"
package_info_plus: ">=4.0.1 <6.0.0"
qr_flutter: 4.1.0
smithy: ">=0.6.2 <0.7.0"
stream_transform: ^2.0.0
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Expand Up @@ -37,7 +37,7 @@ dependencies:
json_serializable: 6.7.1
mime: ^1.0.0
oauth2: ^2.0.2
package_info_plus: ">=4.0.1 <=6.0.0"
package_info_plus: ">=4.0.1 <6.0.0"
pigeon: ^11.0.0
sqlite3: ^2.0.0
source_gen: ^1.3.2
Expand Down