diff --git a/CHANGELOG.md b/CHANGELOG.md index c3a715f..1c9da3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # CHANGELOG + +## 0.5.2 + +* change ios audio session defaults to support voice isolation +* fix explicit subscribe/unsubscribe issue +* fix WebRTC-SDK resolve issue + ## 0.5.1 * include plugins for Android and Web diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 04b3dde..2523fa9 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1,18 +1,18 @@ PODS: - Flutter (1.0.0) - - flutter_webrtc (0.2.2): + - flutter_webrtc (0.2.3): - Flutter - Libyuv (= 1703) - - WebRTC-SDK (= 92.4515.07) + - WebRTC-SDK (= 92.4515.10) - Libyuv (1703) - - livekit_client (0.0.1): + - livekit_client (0.5.2): - Flutter - - WebRTC-SDK (= 92.4515.07) + - WebRTC-SDK (= 92.4515.10) - path_provider (0.0.1): - Flutter - shared_preferences (0.0.1): - Flutter - - WebRTC-SDK (92.4515.07) + - WebRTC-SDK (92.4515.10) DEPENDENCIES: - Flutter (from `Flutter`) @@ -40,12 +40,12 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a - flutter_webrtc: 6b71a1fc1d931a3dfe879e578ea10e2e6cd84f53 + flutter_webrtc: 4e541b51d92b1197f77b17bea3efaa61e295a5f8 Libyuv: 5f79ced0ee66e60a612ca97de1e6ccacd187a437 - livekit_client: 9216ac9adba8d54cefc870bbcb657ec1da534309 + livekit_client: 37ba5aa5253f2b41eae3fbdbfda372772b361674 path_provider: d1e9807085df1f9cc9318206cd649dc0b76be3de shared_preferences: 5033afbb22d372e15aff8ff766df9021b845f273 - WebRTC-SDK: 540a44f2e30e89c75e331d5c4a372253ba668233 + WebRTC-SDK: dabc6471c193814aeb0ad9e6712052567acff601 PODFILE CHECKSUM: 82aed1035f46bfa5b522f0d0dbf4730f17ec65ff diff --git a/example/pubspec.lock b/example/pubspec.lock index b882f5f..2dd34ab 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -113,7 +113,7 @@ packages: name: flutter_webrtc url: "https://pub.dartlang.org" source: hosted - version: "0.7.0" + version: "0.7.0+hotfix.2" google_fonts: dependency: "direct main" description: @@ -127,7 +127,7 @@ packages: name: http url: "https://pub.dartlang.org" source: hosted - version: "0.13.3" + version: "0.13.4" http_parser: dependency: transitive description: @@ -155,7 +155,7 @@ packages: path: ".." relative: true source: path - version: "0.5.1" + version: "0.5.2" logging: dependency: "direct main" description: @@ -226,13 +226,6 @@ packages: url: "https://pub.dartlang.org" source: hosted version: "2.0.3" - pedantic: - dependency: transitive - description: - name: pedantic - url: "https://pub.dartlang.org" - source: hosted - version: "1.11.1" platform: dependency: transitive description: @@ -246,14 +239,14 @@ packages: name: plugin_platform_interface url: "https://pub.dartlang.org" source: hosted - version: "2.0.1" + version: "2.0.2" process: dependency: transitive description: name: process url: "https://pub.dartlang.org" source: hosted - version: "4.2.3" + version: "4.2.4" protobuf: dependency: transitive description: @@ -377,7 +370,7 @@ packages: name: uuid url: "https://pub.dartlang.org" source: hosted - version: "3.0.4" + version: "3.0.5" vector_math: dependency: transitive description: @@ -391,7 +384,7 @@ packages: name: win32 url: "https://pub.dartlang.org" source: hosted - version: "2.2.9" + version: "2.2.10" xdg_directories: dependency: transitive description: diff --git a/ios/livekit_client.podspec b/ios/livekit_client.podspec index 2925d58..44e5302 100644 --- a/ios/livekit_client.podspec +++ b/ios/livekit_client.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |s| s.name = 'livekit_client' - s.version = '0.0.1' + s.version = '0.5.2' s.summary = 'Open source platform for real-time audio and video.' s.description = 'Open source platform for real-time audio and video.' s.homepage = 'https://livekit.io/' diff --git a/pubspec.lock b/pubspec.lock index e8d35c9..8093964 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -106,7 +106,7 @@ packages: name: flutter_webrtc url: "https://pub.dartlang.org" source: hosted - version: "0.7.0" + version: "0.7.0+hotfix.2" http: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index 4196d62..f3c2a6c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: livekit_client description: Flutter Client SDK for LiveKit. Build real-time video and audio into your apps. Supports iOS, Android, and Web. -version: 0.5.1 +version: 0.5.2 homepage: https://livekit.io environment: @@ -23,7 +23,7 @@ dependencies: uuid: ^3.0.4 synchronized: ^3.0.0 protobuf: ^2.0.0 - flutter_webrtc: ^0.7.0 + flutter_webrtc: ^0.7.0+hotfix.2 dev_dependencies: flutter_test: