diff --git a/packages/package_info_plus/package_info_plus/CHANGELOG.md b/packages/package_info_plus/package_info_plus/CHANGELOG.md index bdfbaba2e0..1dd5658470 100644 --- a/packages/package_info_plus/package_info_plus/CHANGELOG.md +++ b/packages/package_info_plus/package_info_plus/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.4.1 + +- Windows: Fix MissingPluginException +- Linux: Fix MissingPluginException + ## 1.4.0 - Android: Migrate to Kotlin diff --git a/packages/package_info_plus/package_info_plus/pubspec.yaml b/packages/package_info_plus/package_info_plus/pubspec.yaml index ec05afcfa0..bcb616acf6 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: 1.4.0 +version: 1.4.1 homepage: https://plus.fluttercommunity.dev/ repository: https://github.com/fluttercommunity/plus_plugins/tree/main/packages/ @@ -25,9 +25,9 @@ dependencies: flutter: sdk: flutter package_info_plus_platform_interface: ^1.0.2 - package_info_plus_linux: ^1.0.3 + package_info_plus_linux: ^1.0.4 package_info_plus_macos: ^1.2.0 - package_info_plus_windows: ^1.0.4 + package_info_plus_windows: ^1.0.5 package_info_plus_web: ^1.0.4 dev_dependencies: diff --git a/packages/package_info_plus/package_info_plus_linux/CHANGELOG.md b/packages/package_info_plus/package_info_plus_linux/CHANGELOG.md index 418f3fe08c..70fd3f6c9e 100644 --- a/packages/package_info_plus/package_info_plus_linux/CHANGELOG.md +++ b/packages/package_info_plus/package_info_plus_linux/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.4 + +- Fix MissingPluginException + ## 1.0.3 - Add `buildSignature` to Android package info to retrieve the signing certifiate SHA1 at runtime. diff --git a/packages/package_info_plus/package_info_plus_linux/pubspec.yaml b/packages/package_info_plus/package_info_plus_linux/pubspec.yaml index d5e4bb13ec..0c41b54d94 100644 --- a/packages/package_info_plus/package_info_plus_linux/pubspec.yaml +++ b/packages/package_info_plus/package_info_plus_linux/pubspec.yaml @@ -1,12 +1,12 @@ name: package_info_plus_linux description: Linux implementation of the package_info_plus plugin -version: 1.0.3 +version: 1.0.4 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: package_info_plus_platform_interface: ^1.0.2 @@ -25,4 +25,4 @@ flutter: platforms: linux: dartPluginClass: PackageInfoLinux - pluginClass: none \ No newline at end of file + pluginClass: none diff --git a/packages/package_info_plus/package_info_plus_windows/CHANGELOG.md b/packages/package_info_plus/package_info_plus_windows/CHANGELOG.md index 517b1b3f9a..1fb119c5db 100644 --- a/packages/package_info_plus/package_info_plus_windows/CHANGELOG.md +++ b/packages/package_info_plus/package_info_plus_windows/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.5 + +- Fix MissingPluginException + ## 1.0.4 - Annotate int with external in preparation of Flutter 2.5 diff --git a/packages/package_info_plus/package_info_plus_windows/pubspec.yaml b/packages/package_info_plus/package_info_plus_windows/pubspec.yaml index 6a91cf86ef..05582bc114 100644 --- a/packages/package_info_plus/package_info_plus_windows/pubspec.yaml +++ b/packages/package_info_plus/package_info_plus_windows/pubspec.yaml @@ -1,12 +1,12 @@ name: package_info_plus_windows description: Windows implementation of the package_info_plus plugin -version: 1.0.4 +version: 1.0.5 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: package_info_plus_platform_interface: ^1.0.2 @@ -26,4 +26,4 @@ flutter: platforms: windows: dartPluginClass: PackageInfoWindows - pluginClass: none \ No newline at end of file + pluginClass: none