Skip to content

Commit e4d4428

Browse files
committed
Bump version.
1 parent e51afff commit e4d4428

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Changelog
22

33
--------------------------------------------
4+
[0.8.9] - 2022-06-08
5+
6+
* [Android] Fixes DataChannel issue described in #974
7+
* [iOS] Fixes DataChannel issue described in #974
8+
* [Dawrin/Android/Windows] Split data channel's webrtc id from our internal id (#961)
9+
* [Windows] Update to m97.
10+
* [Windows] Add PeerConnectionState
11+
* [Windows] Fix can't open mic alone when built-in AEC is enabled.
12+
413
[0.8.8] - 2022-05-31
514

615
* [Android] Added onBufferedAmountChange callback which will return currentBuffer and changedBuffer and implemented bufferedAmount.

example/lib/src/loopback_sample_unified_tracks.dart

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'dart:async';
21
import 'dart:core';
32

43
import 'package:flutter/material.dart';

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_webrtc
22
description: Flutter WebRTC plugin for iOS/Android/Destkop/Web, based on GoogleWebRTC.
3-
version: 0.8.8
3+
version: 0.8.9
44
homepage: https://github.com/cloudwebrtc/flutter-webrtc
55
environment:
66
sdk: '>=2.12.0 <3.0.0'

test/unit/rtc_peerconnection_test.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ void main() {
1010
final channel = MethodChannel('FlutterWebRTC.Method');
1111
setUp(() {
1212
channel.setMockMethodCallHandler((MethodCall methodCall) async {
13-
await ServicesBinding.instance?.defaultBinaryMessenger
13+
await ServicesBinding.instance.defaultBinaryMessenger
1414
.handlePlatformMessage(
1515
'FlutterWebRTC/peerConnectoinEvent', null, (ByteData? data) {});
16-
await ServicesBinding.instance?.defaultBinaryMessenger
16+
await ServicesBinding.instance.defaultBinaryMessenger
1717
.handlePlatformMessage(
1818
'FlutterWebRTC/dataChannelEvent', null, (ByteData? data) {});
1919
});

0 commit comments

Comments
 (0)