From 0300701d950c86262b6f59f3b1f243ab0b91a73f Mon Sep 17 00:00:00 2001 From: YuliaGrigorieva Date: Mon, 21 Aug 2023 19:26:03 +0300 Subject: [PATCH] Update changelog and sdk version to 3.8.2 --- CHANGELOG.md | 3 +++ android/build.gradle | 2 +- .../com/voximplant/flutter_voximplant/VoximplantPlugin.java | 2 +- ios/Classes/VoximplantPlugin.m | 2 +- ios/flutter_voximplant.podspec | 2 +- pubspec.yaml | 2 +- 6 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3650841..d452fa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,9 @@ * VIEndpoint.onStopReceivingVideoStream * Introduce new API VIVideoStreamReceiveStopReason to handle the reason for video receive stop on a remote video stream. +## 3.8.2 +* Fix(ios): crash on remove video renderer that does not exist anymore + ## 3.8.1 * Fix(ios): crash on rendering local video when an iPhone is rotated * Remove e2e from dev_dependencies diff --git a/android/build.gradle b/android/build.gradle index 1fc4814..48bfaa6 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,5 +1,5 @@ group 'com.voximplant.flutter_voximplant' -version '3.8.1' +version '3.8.2' buildscript { repositories { diff --git a/android/src/main/java/com/voximplant/flutter_voximplant/VoximplantPlugin.java b/android/src/main/java/com/voximplant/flutter_voximplant/VoximplantPlugin.java index 5bc7fe7..805e7a8 100644 --- a/android/src/main/java/com/voximplant/flutter_voximplant/VoximplantPlugin.java +++ b/android/src/main/java/com/voximplant/flutter_voximplant/VoximplantPlugin.java @@ -40,7 +40,7 @@ public class VoximplantPlugin implements MethodCallHandler, FlutterPlugin, Event private AudioFileManager mAudioFileManager; public VoximplantPlugin() { - Voximplant.subVersion = "flutter-3.8.1"; + Voximplant.subVersion = "flutter-3.8.2"; } private void configure(Context context, TextureRegistry textures, BinaryMessenger messenger) { diff --git a/ios/Classes/VoximplantPlugin.m b/ios/Classes/VoximplantPlugin.m index a0a8c49..f599d48 100644 --- a/ios/Classes/VoximplantPlugin.m +++ b/ios/Classes/VoximplantPlugin.m @@ -59,7 +59,7 @@ - (instancetype)initWithRegistrar:(NSObject *)registrar self.audioFileManager = [[VIAudioFileManager alloc] initWithPlugin:self]; self.cameraModule = [[VICameraModule alloc] init]; self.messagingModule = [[VIMessagingModule alloc] initWithRegistrar:self.registrar]; - [VIClient setVersionExtension:@"flutter-3.8.1"]; + [VIClient setVersionExtension:@"flutter-3.8.2"]; } return self; } diff --git a/ios/flutter_voximplant.podspec b/ios/flutter_voximplant.podspec index aa89864..ac7c1c9 100644 --- a/ios/flutter_voximplant.podspec +++ b/ios/flutter_voximplant.podspec @@ -3,7 +3,7 @@ # Pod::Spec.new do |s| s.name = 'flutter_voximplant' - s.version = '3.8.1' + s.version = '3.8.2' s.summary = 'Voximplant Flutter SDK' s.description = <<-DESC Voximplant plugin for embedding voice and video communication into Flutter applications. diff --git a/pubspec.yaml b/pubspec.yaml index 8ddee1b..14acf27 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_voximplant description: Voximplant plugin for embedding voice and video communication into Flutter applications. -version: 3.8.1 +version: 3.8.2 homepage: https://voximplant.com repository: https://github.com/voximplant/flutter_voximplant