Skip to content

Commit 383058f

Browse files
committed
bump version.
1 parent 57dec56 commit 383058f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

33
--------------------------------------------
4+
[1.0.7] - 2022-08-04
5+
6+
* Add stub for selectAudioOutput.
7+
48
[1.0.6] - 2022-08-04
59

610
* Add selectAudioOutput method to MediaDevices.

lib/src/mediadevices.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ abstract class MediaDevices {
122122
Function(dynamic event)? ondevicechange;
123123

124124
/// Prompts the user to select a specific audio output device.
125-
Future<MediaDeviceInfo> selectAudioOutput([AudioOutputOptions? options]);
125+
Future<MediaDeviceInfo> selectAudioOutput([AudioOutputOptions? options]) =>
126+
throw UnimplementedError();
126127
}
127128

128129
/// This describe the media input and output devices, such as microphones,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: webrtc_interface
22
description: WebRTC Interface for Dart-Web/Flutter.
3-
version: 1.0.6
3+
version: 1.0.7
44
homepage: https://flutter-webrtc.org
55

66
environment:

0 commit comments

Comments
 (0)