Skip to content

Commit

Permalink
Update changelog and sdk version to 3.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
YuliaGrigorieva committed May 20, 2024
1 parent fe6cf02 commit 8bb064c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Changelog
## 3.12.0
- Update Android and iOS platform code to use Voximplant Android SDK 2.39.0 and Voximplant iOS SDK 2.52.0
- Change minimum iOS deployment target to 12.0
- Introduce [VINode](/docs/references/fluttersdk/client/vinode) enum
- [VIClient.connect](/docs/references/fluttersdk/client/viclient#connect) API now takes an optional parameter to specify the node the Voximplant account belongs to

## 3.11.1
* Fix(android): End all calls on Flutter engine detach
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.voximplant.flutter_voximplant'
version '3.11.1'
version '3.12.0'

buildscript {
repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class VoximplantPlugin implements MethodCallHandler, FlutterPlugin, Event
private AudioFileManager mAudioFileManager;

public VoximplantPlugin() {
Voximplant.subVersion = "flutter-3.11.1";
Voximplant.subVersion = "flutter-3.12.0";
}

private void configure(Context context, TextureRegistry textures, BinaryMessenger messenger) {
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/VoximplantPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ - (instancetype)initWithRegistrar:(NSObject<FlutterPluginRegistrar> *)registrar
self.audioFileManager = [[VIAudioFileManager alloc] initWithPlugin:self];
self.cameraModule = [[VICameraModule alloc] init];
self.messagingModule = [[VIMessagingModule alloc] initWithRegistrar:self.registrar];
[VIClient setVersionExtension:@"flutter-3.11.1"];
[VIClient setVersionExtension:@"flutter-3.12.0"];
}
return self;
}
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: flutter_voximplant
description: Voximplant plugin for embedding voice and video communication into Flutter applications.
version: 3.11.1
version: 3.12.0
homepage: https://voximplant.com
repository: https://github.com/voximplant/flutter_voximplant

Expand Down

0 comments on commit 8bb064c

Please sign in to comment.