From 343e91baf25e28645b115cb2d2a95bc82970cc3e Mon Sep 17 00:00:00 2001 From: Kabirou Agouda <64534846+kagouda@users.noreply.github.com> Date: Thu, 3 Dec 2020 11:08:17 +0000 Subject: [PATCH 1/5] Update README.md I just tried to update the links. The old links worked too but redirected to the current links. I just had the idea to put the current links directly. https://pub.dartlang.org/packages/share to https://pub.dev/packages/share/ and https://flutter.io/platform-plugins/ to https://flutter.dev/docs/development/packages-and-plugins/using-packages --- packages/share/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/share/README.md b/packages/share/README.md index 750fca6a5b18..534e6b6a5fc4 100644 --- a/packages/share/README.md +++ b/packages/share/README.md @@ -1,6 +1,6 @@ # Share plugin -[![pub package](https://img.shields.io/pub/v/share.svg)](https://pub.dartlang.org/packages/share) +[![pub package](https://img.shields.io/pub/v/share.svg)](https://pub.dev/packages/share/) A Flutter plugin to share content from your Flutter app via the platform's share dialog. @@ -17,7 +17,7 @@ For more details see: https://github.com/flutter/flutter/wiki/Package-migration- ## Usage -To use this plugin, add `share` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/). +To use this plugin, add `share` as a [dependency in your pubspec.yaml file](https://flutter.dev/docs/development/packages-and-plugins/using-packages/). ## Example @@ -44,4 +44,4 @@ To share one or multiple files invoke the static `shareFiles` method anywhere in ``` dart Share.shareFiles(['${directory.path}/image.jpg'], text: 'Great picture'); Share.shareFiles(['${directory.path}/image1.jpg', '${directory.path}/image2.jpg']); -``` \ No newline at end of file +``` From e2fc1090b758230446eb3b945a54731ea86a64ff Mon Sep 17 00:00:00 2001 From: Kabirou Agouda <64534846+kagouda@users.noreply.github.com> Date: Thu, 17 Dec 2020 21:11:57 +0000 Subject: [PATCH 2/5] Update pubspec.yaml --- packages/share/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/share/pubspec.yaml b/packages/share/pubspec.yaml index 69d0fdbd5eb8..813fa694184e 100644 --- a/packages/share/pubspec.yaml +++ b/packages/share/pubspec.yaml @@ -2,7 +2,7 @@ name: share description: Flutter plugin for sharing content via the platform share UI, using the ACTION_SEND intent on Android and UIActivityViewController on iOS. homepage: https://github.com/flutter/plugins/tree/master/packages/share -version: 2.0.0-nullsafety +version: 2.0.1-nullsafety flutter: plugin: From a78e3f37a9db0b36c55f97dbd2d01a8aeaa958e6 Mon Sep 17 00:00:00 2001 From: Kabirou Agouda <64534846+kagouda@users.noreply.github.com> Date: Thu, 17 Dec 2020 21:12:56 +0000 Subject: [PATCH 3/5] Update CHANGELOG.md --- packages/share/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/share/CHANGELOG.md b/packages/share/CHANGELOG.md index 86906bbd56be..6c33cc8859b6 100644 --- a/packages/share/CHANGELOG.md +++ b/packages/share/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.1-nullsafety + +* Update README with the new documentation urls. + ## 2.0.0-nullsafety * Migrate to null safety. From d496e6c0c49cb09fa6df3700801fe1aa16158db3 Mon Sep 17 00:00:00 2001 From: Kabirou Agouda <64534846+kagouda@users.noreply.github.com> Date: Thu, 17 Dec 2020 21:13:19 +0000 Subject: [PATCH 4/5] Update CHANGELOG.md From cbf76c277bac5f8fc963902911f07134fd5964ff Mon Sep 17 00:00:00 2001 From: Kabirou Agouda <64534846+kagouda@users.noreply.github.com> Date: Thu, 17 Dec 2020 21:16:57 +0000 Subject: [PATCH 5/5] Update CHANGELOG.md