Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

[path_provider, video_player] Tweak pubspecs to pass bulk analysis. #2959

Merged
merged 1 commit into from
Aug 24, 2020
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
Original file line number Diff line number Diff line change
Expand Up @@ -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: ../

Expand Down
4 changes: 4 additions & 0 deletions packages/video_player/video_player/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 3 additions & 3 deletions packages/video_player/video_player/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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.
Expand Down