From a41025ab64e81970527cc30f7be7569672e751e1 Mon Sep 17 00:00:00 2001 From: lcuis Date: Fri, 27 Dec 2024 02:10:03 +0100 Subject: [PATCH 1/2] loosen share_plus version dependency Hi! Would it be possible to loosen the share_plus version dependency please? I'm having compilation issues at the moment while latest version of share_plus is `10.1.3`: ``` Because no versions of web_browser match >0.7.4 and web_browser 0.7.4 depends on share_plus ^6.3.1, web_browser >=0.7.4 requires share_plus ^6.3.1. ``` Thanks! --- pubspec.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 7f04dd2..9872349 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -24,9 +24,9 @@ dependencies: # # Packages by other parties: # - share_plus: ^6.3.1 + share_plus: ">=6.3.1" dev_dependencies: flutter_lints: ^2.0.1 flutter_test: - sdk: flutter \ No newline at end of file + sdk: flutter From 8e150584c6410354373b1993e50f93569367f2e8 Mon Sep 17 00:00:00 2001 From: lcuis Date: Fri, 27 Dec 2024 02:11:56 +0100 Subject: [PATCH 2/2] Update pubspec.yaml