diff --git a/packages/android_alarm_manager_plus/CHANGELOG.md b/packages/android_alarm_manager_plus/CHANGELOG.md index 76a7114656..5e58fcb1a3 100644 --- a/packages/android_alarm_manager_plus/CHANGELOG.md +++ b/packages/android_alarm_manager_plus/CHANGELOG.md @@ -1,3 +1,8 @@ +## 5.1.0 + + - **REFACTOR**(android_alarm_manager_plus): Migrate from Groovy to Kotlin DSL in Android part ([#3907](https://github.com/fluttercommunity/plus_plugins/issues/3907)). ([4cf0346a](https://github.com/fluttercommunity/plus_plugins/commit/4cf0346a33adbd484b20b12b40bb8c5e9c7a9dde)) + - **FEAT**(android_alarm_manager_plus): Add support of built-in Kotlin ([#3903](https://github.com/fluttercommunity/plus_plugins/issues/3903)). ([e770acd0](https://github.com/fluttercommunity/plus_plugins/commit/e770acd0210f5fc18783110474b81205ada2baf0)) + ## 5.0.0 > Note: This release has breaking changes. diff --git a/packages/android_alarm_manager_plus/example/pubspec.yaml b/packages/android_alarm_manager_plus/example/pubspec.yaml index df3fd149ff..7891a811e2 100644 --- a/packages/android_alarm_manager_plus/example/pubspec.yaml +++ b/packages/android_alarm_manager_plus/example/pubspec.yaml @@ -8,7 +8,7 @@ environment: dependencies: flutter: sdk: flutter - android_alarm_manager_plus: ^5.0.0 + android_alarm_manager_plus: ^5.1.0 permission_handler: ^12.0.1 shared_preferences: ^2.5.3 diff --git a/packages/android_alarm_manager_plus/pubspec.yaml b/packages/android_alarm_manager_plus/pubspec.yaml index 0137707eba..54d79d9765 100644 --- a/packages/android_alarm_manager_plus/pubspec.yaml +++ b/packages/android_alarm_manager_plus/pubspec.yaml @@ -1,7 +1,7 @@ name: android_alarm_manager_plus description: Flutter plugin for accessing the Android AlarmManager service, and running Dart code in the background when alarms fire. -version: 5.0.0 +version: 5.1.0 homepage: https://github.com/fluttercommunity/plus_plugins repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/android_alarm_manager_plus issue_tracker: https://github.com/fluttercommunity/plus_plugins/labels/android_alarm_manager_plus diff --git a/packages/battery_plus/battery_plus/CHANGELOG.md b/packages/battery_plus/battery_plus/CHANGELOG.md index c307e418fb..3ff8c428c4 100644 --- a/packages/battery_plus/battery_plus/CHANGELOG.md +++ b/packages/battery_plus/battery_plus/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.1.0 + + - **REFACTOR**(battery_plus): Migrate from Groovy to Kotlin DSL in Android part ([#3906](https://github.com/fluttercommunity/plus_plugins/issues/3906)). ([104df18a](https://github.com/fluttercommunity/plus_plugins/commit/104df18a36432b81ec808cdfb85e01e7c2781d34)) + - **FEAT**(battery_plus): Updated Swift Package Manager setup for Flutter 3.44 ([#3909](https://github.com/fluttercommunity/plus_plugins/issues/3909)). ([a9409774](https://github.com/fluttercommunity/plus_plugins/commit/a9409774cecd00a595cbf6eb49980416e38a0415)) + - **FEAT**(battery_plus): Add support of built-in Kotlin ([#3901](https://github.com/fluttercommunity/plus_plugins/issues/3901)). ([93d366dd](https://github.com/fluttercommunity/plus_plugins/commit/93d366dd439a7d7c801d82b055653ba222e7f984)) + ## 7.0.0 > Note: This release has breaking changes. diff --git a/packages/battery_plus/battery_plus/example/pubspec.yaml b/packages/battery_plus/battery_plus/example/pubspec.yaml index 4e87694b0e..46a8ce3818 100644 --- a/packages/battery_plus/battery_plus/example/pubspec.yaml +++ b/packages/battery_plus/battery_plus/example/pubspec.yaml @@ -8,7 +8,7 @@ environment: dependencies: flutter: sdk: flutter - battery_plus: ^7.0.0 + battery_plus: ^7.1.0 dev_dependencies: flutter_driver: diff --git a/packages/battery_plus/battery_plus/pubspec.yaml b/packages/battery_plus/battery_plus/pubspec.yaml index 5e636e8210..fbc6ece2b9 100644 --- a/packages/battery_plus/battery_plus/pubspec.yaml +++ b/packages/battery_plus/battery_plus/pubspec.yaml @@ -1,6 +1,6 @@ name: battery_plus description: Flutter plugin for accessing information about the battery state(full, charging, discharging). -version: 7.0.0 +version: 7.1.0 homepage: https://github.com/fluttercommunity/plus_plugins repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/battery_plus/battery_plus issue_tracker: https://github.com/fluttercommunity/plus_plugins/labels/battery_plus diff --git a/packages/connectivity_plus/connectivity_plus/CHANGELOG.md b/packages/connectivity_plus/connectivity_plus/CHANGELOG.md index 1a2fbc6bf8..9be144429f 100644 --- a/packages/connectivity_plus/connectivity_plus/CHANGELOG.md +++ b/packages/connectivity_plus/connectivity_plus/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.2.0 + + - **FEAT**(connectivity_plus): Updated Swift Package Manager setup for Flutter 3.44 ([#3893](https://github.com/fluttercommunity/plus_plugins/issues/3893)). ([9c064c2e](https://github.com/fluttercommunity/plus_plugins/commit/9c064c2eaa50c13f27a6e7d2b788f57580658353)) + ## 7.1.1 - **DOCS**(connectivity_plus): Add missing info about Xcode 26.1.1 requirement, deduplicate headers ([#3792](https://github.com/fluttercommunity/plus_plugins/issues/3792)). ([ba6e6b94](https://github.com/fluttercommunity/plus_plugins/commit/ba6e6b94f673bb479a5891b8ca0fc5fd7b2345bc)) diff --git a/packages/connectivity_plus/connectivity_plus/example/pubspec.yaml b/packages/connectivity_plus/connectivity_plus/example/pubspec.yaml index 655d0fb861..15fecf54bb 100644 --- a/packages/connectivity_plus/connectivity_plus/example/pubspec.yaml +++ b/packages/connectivity_plus/connectivity_plus/example/pubspec.yaml @@ -7,7 +7,7 @@ environment: dependencies: flutter: sdk: flutter - connectivity_plus: ^7.1.1 + connectivity_plus: ^7.2.0 dev_dependencies: flutter_driver: diff --git a/packages/connectivity_plus/connectivity_plus/pubspec.yaml b/packages/connectivity_plus/connectivity_plus/pubspec.yaml index 3981c754c4..c5492777bf 100644 --- a/packages/connectivity_plus/connectivity_plus/pubspec.yaml +++ b/packages/connectivity_plus/connectivity_plus/pubspec.yaml @@ -1,6 +1,6 @@ name: connectivity_plus description: Flutter plugin for discovering the state of the network (WiFi & mobile/cellular) connectivity on Android and iOS. -version: 7.1.1 +version: 7.2.0 homepage: https://github.com/fluttercommunity/plus_plugins repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/connectivity_plus/connectivity_plus issue_tracker: https://github.com/fluttercommunity/plus_plugins/labels/connectivity_plus diff --git a/packages/device_info_plus/device_info_plus/CHANGELOG.md b/packages/device_info_plus/device_info_plus/CHANGELOG.md index 51a73cbca4..39c9d14200 100644 --- a/packages/device_info_plus/device_info_plus/CHANGELOG.md +++ b/packages/device_info_plus/device_info_plus/CHANGELOG.md @@ -1,3 +1,9 @@ +## 13.2.0 + + - **REFACTOR**(device_info_plus): Change Android Gradle from Groovy to Kotlin ([#3859](https://github.com/fluttercommunity/plus_plugins/issues/3859)). ([ac0daa67](https://github.com/fluttercommunity/plus_plugins/commit/ac0daa671c29215c0b9bf4fb3b8a059698174647)) + - **FEAT**(device_info_plus): Add support of built-in Kotlin ([#3889](https://github.com/fluttercommunity/plus_plugins/issues/3889)). ([872d8cc0](https://github.com/fluttercommunity/plus_plugins/commit/872d8cc0f32112bb21ce4cdcc09c93802cd8c7e6)) + - **FEAT**(device_info_plus): Updated Swift Package Manager setup for Flutter 3.44 ([#3891](https://github.com/fluttercommunity/plus_plugins/issues/3891)). ([92272bde](https://github.com/fluttercommunity/plus_plugins/commit/92272bdea79b1b0cc1c534a9e045a575aae090c2)) + ## 13.1.0 - **FEAT**(device_info_plus): Lower requirements to Dart 3.10 and Flutter 3.38.1 ([#3803](https://github.com/fluttercommunity/plus_plugins/issues/3803)). ([6d73e0d1](https://github.com/fluttercommunity/plus_plugins/commit/6d73e0d1035dd2c6b7fa6691dce4fca31c2a14f6)) diff --git a/packages/device_info_plus/device_info_plus/example/pubspec.yaml b/packages/device_info_plus/device_info_plus/example/pubspec.yaml index ae22980db4..a91d1969f0 100644 --- a/packages/device_info_plus/device_info_plus/example/pubspec.yaml +++ b/packages/device_info_plus/device_info_plus/example/pubspec.yaml @@ -4,7 +4,7 @@ description: Demonstrates how to use the device_info_plus plugin. dependencies: flutter: sdk: flutter - device_info_plus: ^13.1.0 + device_info_plus: ^13.2.0 dev_dependencies: flutter_driver: diff --git a/packages/device_info_plus/device_info_plus/pubspec.yaml b/packages/device_info_plus/device_info_plus/pubspec.yaml index 2e3d15ab4c..beca573162 100644 --- a/packages/device_info_plus/device_info_plus/pubspec.yaml +++ b/packages/device_info_plus/device_info_plus/pubspec.yaml @@ -1,7 +1,7 @@ name: device_info_plus description: Flutter plugin providing detailed information about the device (make, model, etc.), and Android or iOS version the app is running on. -version: 13.1.0 +version: 13.2.0 homepage: https://github.com/fluttercommunity/plus_plugins repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus/device_info_plus issue_tracker: https://github.com/fluttercommunity/plus_plugins/labels/device_info_plus diff --git a/packages/network_info_plus/network_info_plus/CHANGELOG.md b/packages/network_info_plus/network_info_plus/CHANGELOG.md index 030a8f5dd8..79b87e22f0 100644 --- a/packages/network_info_plus/network_info_plus/CHANGELOG.md +++ b/packages/network_info_plus/network_info_plus/CHANGELOG.md @@ -1,3 +1,9 @@ +## 8.2.0 + + - **REFACTOR**(network_info_plus): Change Android Gradle part from Groovy to Kotlin ([#3861](https://github.com/fluttercommunity/plus_plugins/issues/3861)). ([052ec359](https://github.com/fluttercommunity/plus_plugins/commit/052ec359128971cb1710c6ab834c21c4c9f361da)) + - **FEAT**(network_info_plus): Updated Swift Package Manager setup for Flutter 3.44 ([#3908](https://github.com/fluttercommunity/plus_plugins/issues/3908)). ([56ff0896](https://github.com/fluttercommunity/plus_plugins/commit/56ff0896fcd33f3d39de769e832dddbb75e996b8)) + - **FEAT**(network_info_plus): Add support of built-in Kotlin ([#3895](https://github.com/fluttercommunity/plus_plugins/issues/3895)). ([ca838b53](https://github.com/fluttercommunity/plus_plugins/commit/ca838b53ae67965245e408d3060390ad98945d9a)) + ## 8.1.0 - **FEAT**(network_info_plus): Lower requirements to Dart 3.10 and Flutter 3.38.1 ([#3802](https://github.com/fluttercommunity/plus_plugins/issues/3802)). ([63fa060b](https://github.com/fluttercommunity/plus_plugins/commit/63fa060b1a6ec0ce7a6ba02382c313a999c87d8d)) diff --git a/packages/network_info_plus/network_info_plus/example/pubspec.yaml b/packages/network_info_plus/network_info_plus/example/pubspec.yaml index 34609300c2..4e28ba9320 100644 --- a/packages/network_info_plus/network_info_plus/example/pubspec.yaml +++ b/packages/network_info_plus/network_info_plus/example/pubspec.yaml @@ -7,7 +7,7 @@ environment: dependencies: flutter: sdk: flutter - network_info_plus: ^8.1.0 + network_info_plus: ^8.2.0 permission_handler: ^12.0.0+1 dev_dependencies: diff --git a/packages/network_info_plus/network_info_plus/pubspec.yaml b/packages/network_info_plus/network_info_plus/pubspec.yaml index 6333245eea..9e0c64a1d2 100644 --- a/packages/network_info_plus/network_info_plus/pubspec.yaml +++ b/packages/network_info_plus/network_info_plus/pubspec.yaml @@ -1,6 +1,6 @@ name: network_info_plus description: Flutter plugin for discovering information (e.g. WiFi details) of the network. -version: 8.1.0 +version: 8.2.0 homepage: https://github.com/fluttercommunity/plus_plugins repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/network_info_plus/network_info_plus issue_tracker: https://github.com/fluttercommunity/plus_plugins/labels/network_info_plus diff --git a/packages/package_info_plus/package_info_plus/CHANGELOG.md b/packages/package_info_plus/package_info_plus/CHANGELOG.md index 6811ef2c97..6e3ec0d9ab 100644 --- a/packages/package_info_plus/package_info_plus/CHANGELOG.md +++ b/packages/package_info_plus/package_info_plus/CHANGELOG.md @@ -1,3 +1,9 @@ +## 10.2.0 + + - **REFACTOR**(package_info_plus): change android gradle from groovy to kotlin ([#3858](https://github.com/fluttercommunity/plus_plugins/issues/3858)). ([40bb8477](https://github.com/fluttercommunity/plus_plugins/commit/40bb8477d2539ee522cf6f76b659a0ed28d6080e)) + - **FEAT**(package_info_plus): Updated Swift Package Manager setup for Flutter 3.44 ([#3910](https://github.com/fluttercommunity/plus_plugins/issues/3910)). ([7d46a461](https://github.com/fluttercommunity/plus_plugins/commit/7d46a461460048c95adf9336a60810f504ae0a7b)) + - **FEAT**(package_info_plus): Add support of built-in Kotlin ([#3894](https://github.com/fluttercommunity/plus_plugins/issues/3894)). ([479ef7d2](https://github.com/fluttercommunity/plus_plugins/commit/479ef7d2f9296620acd4244d256553b1f3dfbba0)) + ## 10.1.0 - **FEAT**(package_info_plus): Lower requirements to Dart 3.10 and Flutter 3.38.1 ([#3804](https://github.com/fluttercommunity/plus_plugins/issues/3804)). ([bed26b5c](https://github.com/fluttercommunity/plus_plugins/commit/bed26b5cf14bded2d7000f5cca3dffdeb157686c)) diff --git a/packages/package_info_plus/package_info_plus/example/pubspec.yaml b/packages/package_info_plus/package_info_plus/example/pubspec.yaml index f9209b2f96..69d2dcc479 100644 --- a/packages/package_info_plus/package_info_plus/example/pubspec.yaml +++ b/packages/package_info_plus/package_info_plus/example/pubspec.yaml @@ -11,11 +11,11 @@ dependencies: flutter: sdk: flutter http: ">=0.13.5 <2.0.0" - package_info_plus: ^10.1.0 + package_info_plus: ^10.2.0 dev_dependencies: build_runner: ^2.3.3 - device_info_plus: ^13.1.0 + device_info_plus: ^13.2.0 integration_test: sdk: flutter flutter_driver: diff --git a/packages/package_info_plus/package_info_plus/pubspec.yaml b/packages/package_info_plus/package_info_plus/pubspec.yaml index d8405776a8..c26fae0622 100644 --- a/packages/package_info_plus/package_info_plus/pubspec.yaml +++ b/packages/package_info_plus/package_info_plus/pubspec.yaml @@ -1,6 +1,6 @@ name: package_info_plus description: Flutter plugin for querying information about the application package, such as CFBundleVersion on iOS or versionCode on Android. -version: 10.1.0 +version: 10.2.0 homepage: https://github.com/fluttercommunity/plus_plugins repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/package_info_plus/package_info_plus issue_tracker: https://github.com/fluttercommunity/plus_plugins/labels/package_info_plus diff --git a/packages/sensors_plus/sensors_plus/CHANGELOG.md b/packages/sensors_plus/sensors_plus/CHANGELOG.md index 415611d4f3..a5b91c9535 100644 --- a/packages/sensors_plus/sensors_plus/CHANGELOG.md +++ b/packages/sensors_plus/sensors_plus/CHANGELOG.md @@ -1,3 +1,11 @@ +## 7.1.0 + + - **REFACTOR**(sensors_plus): Migrate from Groovy to Kotlin DSL in Android part ([#3905](https://github.com/fluttercommunity/plus_plugins/issues/3905)). ([4fe91963](https://github.com/fluttercommunity/plus_plugins/commit/4fe91963f4bee70e3d58eee4fc116f20ed0eff76)) + - **FIX**(sensors_plus): Resolve incorrect cleanup method call ([#3898](https://github.com/fluttercommunity/plus_plugins/issues/3898)). ([29195a9d](https://github.com/fluttercommunity/plus_plugins/commit/29195a9d2b37a49da082696de3823f4c03d5ab38)) + - **FIX**(sensors_plus): resolve lint issues found during melos analyze ([#3845](https://github.com/fluttercommunity/plus_plugins/issues/3845)). ([c6511c08](https://github.com/fluttercommunity/plus_plugins/commit/c6511c087f2b49ec1b64a1f9906a990085066531)) + - **FEAT**(sensors_plus): Add support of built-in Kotlin ([#3902](https://github.com/fluttercommunity/plus_plugins/issues/3902)). ([bc7a6a0f](https://github.com/fluttercommunity/plus_plugins/commit/bc7a6a0fcfb1bad2ffed7780a8e04bb6080fba82)) + - **FEAT**(sensors_plus): Updated Swift Package Manager setup for Flutter 3.44 ([#3892](https://github.com/fluttercommunity/plus_plugins/issues/3892)). ([f2846468](https://github.com/fluttercommunity/plus_plugins/commit/f28464683773ba57fb9de0681a2bbe72c3eb54a0)) + ## 7.0.0 > Note: This release has breaking changes. diff --git a/packages/sensors_plus/sensors_plus/example/pubspec.yaml b/packages/sensors_plus/sensors_plus/example/pubspec.yaml index 64d48d7a55..696b027b36 100644 --- a/packages/sensors_plus/sensors_plus/example/pubspec.yaml +++ b/packages/sensors_plus/sensors_plus/example/pubspec.yaml @@ -4,7 +4,7 @@ description: Demonstrates how to use the sensors plugin. dependencies: flutter: sdk: flutter - sensors_plus: ^7.0.0 + sensors_plus: ^7.1.0 dev_dependencies: flutter_driver: diff --git a/packages/sensors_plus/sensors_plus/pubspec.yaml b/packages/sensors_plus/sensors_plus/pubspec.yaml index 2638919d1e..11299f60e1 100644 --- a/packages/sensors_plus/sensors_plus/pubspec.yaml +++ b/packages/sensors_plus/sensors_plus/pubspec.yaml @@ -1,7 +1,7 @@ name: sensors_plus description: Flutter plugin for accessing accelerometer, gyroscope, and magnetometer sensors. -version: 7.0.0 +version: 7.1.0 homepage: https://github.com/fluttercommunity/plus_plugins repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/sensors_plus/sensors_plus issue_tracker: https://github.com/fluttercommunity/plus_plugins/labels/sensors_plus @@ -27,7 +27,7 @@ dependencies: sdk: flutter flutter_web_plugins: sdk: flutter - sensors_plus_platform_interface: ^2.0.1 + sensors_plus_platform_interface: ^2.0.2 dev_dependencies: test: ^1.22.0 diff --git a/packages/sensors_plus/sensors_plus_platform_interface/CHANGELOG.md b/packages/sensors_plus/sensors_plus_platform_interface/CHANGELOG.md index c7f7e34f97..1f1002deb7 100644 --- a/packages/sensors_plus/sensors_plus_platform_interface/CHANGELOG.md +++ b/packages/sensors_plus/sensors_plus_platform_interface/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.2 + + - **FIX**(sensors_plus): resolve lint issues found during melos analyze ([#3845](https://github.com/fluttercommunity/plus_plugins/issues/3845)). ([c6511c08](https://github.com/fluttercommunity/plus_plugins/commit/c6511c087f2b49ec1b64a1f9906a990085066531)) + ## 2.0.1 - **REFACTOR**(all): Use range of flutter_lints for broader compatibility ([#3371](https://github.com/fluttercommunity/plus_plugins/issues/3371)). ([8a303add](https://github.com/fluttercommunity/plus_plugins/commit/8a303add3dee1acb8bac5838246490ed8a0fe408)) diff --git a/packages/sensors_plus/sensors_plus_platform_interface/pubspec.yaml b/packages/sensors_plus/sensors_plus_platform_interface/pubspec.yaml index 74b91d1438..047e3db3f9 100644 --- a/packages/sensors_plus/sensors_plus_platform_interface/pubspec.yaml +++ b/packages/sensors_plus/sensors_plus_platform_interface/pubspec.yaml @@ -1,6 +1,6 @@ name: sensors_plus_platform_interface description: A common platform interface for the sensors_plus plugin. -version: 2.0.1 +version: 2.0.2 homepage: https://github.com/fluttercommunity/plus_plugins repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/ diff --git a/packages/share_plus/share_plus/CHANGELOG.md b/packages/share_plus/share_plus/CHANGELOG.md index 32a932cdd8..db0923544d 100644 --- a/packages/share_plus/share_plus/CHANGELOG.md +++ b/packages/share_plus/share_plus/CHANGELOG.md @@ -1,3 +1,10 @@ +## 13.2.0 + + - **REFACTOR**(share_plus): Change Android Gradle from Groovy to Kotlin ([#3860](https://github.com/fluttercommunity/plus_plugins/issues/3860)). ([d9b6f299](https://github.com/fluttercommunity/plus_plugins/commit/d9b6f299dec2c61673a9e4650e9fd554d44422a5)) + - **FIX**(share_plus): resolve js interop lint and maintain minimum sdk ([#3846](https://github.com/fluttercommunity/plus_plugins/issues/3846)). ([09d75d8f](https://github.com/fluttercommunity/plus_plugins/commit/09d75d8f822831ffb07f81234365accc7e8593de)) + - **FEAT**(share_plus): Updated Swift Package Manager setup for Flutter 3.44 ([#3911](https://github.com/fluttercommunity/plus_plugins/issues/3911)). ([cf006091](https://github.com/fluttercommunity/plus_plugins/commit/cf00609169e791d41e21a59826dcfa574ce12fe6)) + - **FEAT**(share_plus): Add support of built-in Kotlin ([#3896](https://github.com/fluttercommunity/plus_plugins/issues/3896)). ([0c9b0ad0](https://github.com/fluttercommunity/plus_plugins/commit/0c9b0ad0e596adff407d61cefbbf1088b56783da)) + ## 13.1.0 - **FEAT**(share_plus): Lower requirements to Dart 3.10 and Flutter 3.38.1 ([#3801](https://github.com/fluttercommunity/plus_plugins/issues/3801)). ([d965e00e](https://github.com/fluttercommunity/plus_plugins/commit/d965e00e5082d4e32e25cacad0b193a735d51c5f)) diff --git a/packages/share_plus/share_plus/example/pubspec.yaml b/packages/share_plus/share_plus/example/pubspec.yaml index 41c34283dd..641e941295 100644 --- a/packages/share_plus/share_plus/example/pubspec.yaml +++ b/packages/share_plus/share_plus/example/pubspec.yaml @@ -4,7 +4,7 @@ description: Demonstrates how to use the share_plus plugin. dependencies: flutter: sdk: flutter - share_plus: ^13.1.0 + share_plus: ^13.2.0 image_picker: ^1.2.2 file_selector: ^1.1.0 diff --git a/packages/share_plus/share_plus/pubspec.yaml b/packages/share_plus/share_plus/pubspec.yaml index 17af4a514e..9afbd8b682 100644 --- a/packages/share_plus/share_plus/pubspec.yaml +++ b/packages/share_plus/share_plus/pubspec.yaml @@ -1,6 +1,6 @@ name: share_plus description: Flutter plugin for sharing content via the platform share UI, using the ACTION_SEND intent on Android and UIActivityViewController on iOS. -version: 13.1.0 +version: 13.2.0 homepage: https://github.com/fluttercommunity/plus_plugins repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/share_plus/share_plus issue_tracker: https://github.com/fluttercommunity/plus_plugins/labels/share_plus