diff --git a/packages/path_provider/path_provider_macos/example/pubspec.yaml b/packages/path_provider/path_provider_macos/example/pubspec.yaml index 1ba991dc8160..aaa6842651b5 100644 --- a/packages/path_provider/path_provider_macos/example/pubspec.yaml +++ b/packages/path_provider/path_provider_macos/example/pubspec.yaml @@ -4,7 +4,11 @@ description: Demonstrates how to use the path_provider plugin. dependencies: flutter: sdk: flutter - path_provider: any + path_provider: ^1.6.14 + +# path_provider_macos is endorsed, so we need to add it to dependency_overrides +# to depend on it from path: +dependency_overrides: path_provider_macos: path: ../ diff --git a/packages/video_player/video_player/CHANGELOG.md b/packages/video_player/video_player/CHANGELOG.md index 1fdfad6256f4..ccc5a6393db0 100644 --- a/packages/video_player/video_player/CHANGELOG.md +++ b/packages/video_player/video_player/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.10.12+1 + +* Depend on the version of `video_player_platform_interface` that contains the new `VideoPlayerOptions` class. + ## 0.10.12 * Introduce VideoPlayerOptions to set the audio mix mode. diff --git a/packages/video_player/video_player/pubspec.yaml b/packages/video_player/video_player/pubspec.yaml index a62f6f09a202..d1072641223c 100644 --- a/packages/video_player/video_player/pubspec.yaml +++ b/packages/video_player/video_player/pubspec.yaml @@ -4,7 +4,7 @@ description: Flutter plugin for displaying inline video with other Flutter # 0.10.y+z is compatible with 1.0.0, if you land a breaking change bump # the version to 2.0.0. # See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0 -version: 0.10.12 +version: 0.10.12+1 homepage: https://github.com/flutter/plugins/tree/master/packages/video_player/video_player flutter: @@ -19,8 +19,8 @@ flutter: default_package: video_player_web dependencies: - meta: "^1.0.5" - video_player_platform_interface: ^2.0.0 + meta: ^1.0.5 + video_player_platform_interface: ^2.1.0 # The design on https://flutter.dev/go/federated-plugins was to leave # this constraint as "any". We cannot do it right now as it fails pub publish # validation, so we set a ^ constraint.