From 383058faba4eff905716781e15e3944b7f2e8b85 Mon Sep 17 00:00:00 2001 From: cloudwebrtc Date: Thu, 4 Aug 2022 18:53:32 +0800 Subject: [PATCH] bump version. --- CHANGELOG.md | 4 ++++ lib/src/mediadevices.dart | 3 ++- pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 388d286..9aa2c0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -------------------------------------------- +[1.0.7] - 2022-08-04 + +* Add stub for selectAudioOutput. + [1.0.6] - 2022-08-04 * Add selectAudioOutput method to MediaDevices. diff --git a/lib/src/mediadevices.dart b/lib/src/mediadevices.dart index 7ac216b..9e43527 100644 --- a/lib/src/mediadevices.dart +++ b/lib/src/mediadevices.dart @@ -122,7 +122,8 @@ abstract class MediaDevices { Function(dynamic event)? ondevicechange; /// Prompts the user to select a specific audio output device. - Future selectAudioOutput([AudioOutputOptions? options]); + Future selectAudioOutput([AudioOutputOptions? options]) => + throw UnimplementedError(); } /// This describe the media input and output devices, such as microphones, diff --git a/pubspec.yaml b/pubspec.yaml index a648719..af429ff 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: webrtc_interface description: WebRTC Interface for Dart-Web/Flutter. -version: 1.0.6 +version: 1.0.7 homepage: https://flutter-webrtc.org environment: