Skip to content

Commit

Permalink
bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudwebrtc committed Aug 4, 2022
1 parent 57dec56 commit 383058f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
3 changes: 2 additions & 1 deletion lib/src/mediadevices.dart
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ abstract class MediaDevices {
Function(dynamic event)? ondevicechange;

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

/// This describe the media input and output devices, such as microphones,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit 383058f

Please sign in to comment.