Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/share_plus/share_plus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.0.1

- Hotfix dependencies

## 4.0.0

- iOS, Android, MacOS: Add `shareWithResult` methods to get feedback on user action
Expand Down
12 changes: 6 additions & 6 deletions packages/share_plus/share_plus/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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: 4.0.0
version: 4.0.1
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

Expand All @@ -26,11 +26,11 @@ dependencies:
mime: ^1.0.0
flutter:
sdk: flutter
share_plus_platform_interface: ^2.0.0
share_plus_linux: ^2.0.0
share_plus_macos: ^2.0.0
share_plus_windows: ^2.0.0
share_plus_web: ^2.0.0
share_plus_platform_interface: ^3.0.0
share_plus_linux: ^3.0.0
share_plus_macos: ^3.0.0
share_plus_windows: ^3.0.0
share_plus_web: ^3.0.0

dev_dependencies:
flutter_test:
Expand Down
4 changes: 4 additions & 0 deletions packages/share_plus/share_plus_linux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0.0

- Version bump

## 2.0.4

- Fixes: sharing in isolated sandboxes like Flatpak
Expand Down
6 changes: 3 additions & 3 deletions packages/share_plus/share_plus_linux/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: share_plus_linux
description: Linux implementation of the share_plus plugin
version: 2.0.4
version: 3.0.0
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

environment:
sdk: ">=2.12.0 <3.0.0"
flutter: ">=1.17.0"
flutter: ">=1.20.0"

dependencies:
share_plus_platform_interface: ^2.0.0
share_plus_platform_interface: ^3.0.0
file: ^6.0.0
flutter:
sdk: flutter
Expand Down
2 changes: 1 addition & 1 deletion packages/share_plus/share_plus_macos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 2.1.0
## 3.0.0

- Add *WithResult methods to get feedback on user action

Expand Down
4 changes: 2 additions & 2 deletions packages/share_plus/share_plus_macos/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: share_plus_macos
description: MacOS implementation of the share_plus plugin
version: 2.1.0
version: 3.0.0
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

Expand All @@ -9,7 +9,7 @@ environment:
flutter: ">=1.20.0"

dependencies:
share_plus_platform_interface: ^2.0.0
share_plus_platform_interface: ^3.0.0
flutter:
sdk: flutter

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 2.1.0
## 3.0.0

- Add *WithResult methods to get feedback on user action

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: share_plus_platform_interface
description: A common platform interface for the share_plus plugin.
version: 2.1.0
version: 3.0.0
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

Expand Down
4 changes: 4 additions & 0 deletions packages/share_plus/share_plus_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0.0

- Bump dependencies

## 2.0.4

- Hotfix on 2.0.3, improved solution.
Expand Down
4 changes: 2 additions & 2 deletions packages/share_plus/share_plus_web/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: share_plus_web
description: Web platform implementation of share_plus
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/
version: 2.0.4
version: 3.0.0

flutter:
plugin:
Expand All @@ -12,7 +12,7 @@ flutter:
fileName: share_plus_web.dart

dependencies:
share_plus_platform_interface: ^2.0.0
share_plus_platform_interface: ^3.0.0
url_launcher: ^6.0.1
flutter:
sdk: flutter
Expand Down
4 changes: 4 additions & 0 deletions packages/share_plus/share_plus_windows/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0.0

- Bump dependencies

## 2.0.3

- Hotfix on 2.0.2, improved solution.
Expand Down
6 changes: 3 additions & 3 deletions packages/share_plus/share_plus_windows/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: share_plus_windows
description: Windows implementation of the share_plus plugin
version: 2.0.3
version: 3.0.0
homepage: https://plus.fluttercommunity.dev/
repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/

environment:
sdk: ">=2.12.0 <3.0.0"
flutter: ">=1.17.0"
flutter: ">=1.20.0"

dependencies:
share_plus_platform_interface: ^2.0.0
share_plus_platform_interface: ^3.0.0
flutter:
sdk: flutter
meta: ^1.3.0
Expand Down