From a79f51c15cc85641af0df0cf7fad6fc35ec898be Mon Sep 17 00:00:00 2001 From: Louis-Michel Mathurin Date: Wed, 16 Sep 2020 14:24:01 -0400 Subject: [PATCH 1/2] Fix broken link for federated-plugin --- packages/plugin_platform_interface/README.md | 2 +- packages/plugin_platform_interface/pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/plugin_platform_interface/README.md b/packages/plugin_platform_interface/README.md index 9fdbd8a75fe2..3de243ad48b0 100644 --- a/packages/plugin_platform_interface/README.md +++ b/packages/plugin_platform_interface/README.md @@ -1,6 +1,6 @@ # plugin_platform_interface -This package provides a base class for platform interfaces of [federated flutter plugins](https://fluter.dev/go/federated-plugins). +This package provides a base class for platform interfaces of [federated flutter plugins](https://flutter.dev/docs/development/packages-and-plugins/developing-packages#federated-plugins). Platform implementations should extend their platform interface classes rather than implement it as newly added methods to platform interfaces are not considered as breaking changes. Extending a platform diff --git a/packages/plugin_platform_interface/pubspec.yaml b/packages/plugin_platform_interface/pubspec.yaml index b5f263ca4e69..68872da07ffc 100644 --- a/packages/plugin_platform_interface/pubspec.yaml +++ b/packages/plugin_platform_interface/pubspec.yaml @@ -12,7 +12,7 @@ description: Reusable base class for Flutter plugin platform interfaces. # be done when absolutely necessary and after the ecosystem has already migrated to 1.X.Y version # that is forward compatible with 2.0.0 (ideally the ecosystem have migrated to depend on: # `plugin_platform_interface: >=1.X.Y <3.0.0`). -version: 1.0.2 +version: 1.0.3 homepage: https://github.com/flutter/plugins/plugin_platform_interface From 0f0c94a39cdc94c1595d753fc1575553e5126ece Mon Sep 17 00:00:00 2001 From: Louis-Michel Mathurin Date: Wed, 16 Sep 2020 14:27:08 -0400 Subject: [PATCH 2/2] Add item to the changelog --- packages/plugin_platform_interface/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/plugin_platform_interface/CHANGELOG.md b/packages/plugin_platform_interface/CHANGELOG.md index 1c240eaa901d..b1b5d306d84a 100644 --- a/packages/plugin_platform_interface/CHANGELOG.md +++ b/packages/plugin_platform_interface/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.3 + +* Fix a broken link to the federated-plugin documentation. + ## 1.0.2 * Make the pedantic dev_dependency explicit.