diff --git a/CHANGELOG.md b/CHANGELOG.md index f020330..03830c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +### 1.41.0 +- Update native Android and iOS modules to use Voximplant Android SDK 2.39.0 and Voximplant iOS SDK 2.52.0 +- Introduce [ConnectionNode](https://voximplant.com/docs/references/reactnative/voximplant/connectionnode) enum +- Introduce [ConnectOptions.node](https://voximplant.com/docs/references/reactnative/voximplant/connectoptions#node) config to specify the node the Voximplant account belongs to + ### 1.40.2 - Update RNVoximplant.xcodeproj with the actual source code for iOS platform diff --git a/android/src/main/java/com/voximplant/reactnative/VIClientModule.java b/android/src/main/java/com/voximplant/reactnative/VIClientModule.java index dbec5ff..af44bc7 100644 --- a/android/src/main/java/com/voximplant/reactnative/VIClientModule.java +++ b/android/src/main/java/com/voximplant/reactnative/VIClientModule.java @@ -103,7 +103,7 @@ public String getName() { //region React methods @ReactMethod public void init(ReadableMap settings) { - Voximplant.subVersion = "react-1.40.2"; + Voximplant.subVersion = "react-1.41.0"; ClientConfig config = Utils.convertClientConfigFromMap(settings); try { mClient = Voximplant.getClientInstance(Executors.newSingleThreadExecutor(), mReactContext, config); diff --git a/ios/RNVIClientModule.m b/ios/RNVIClientModule.m index 4588b36..995b413 100644 --- a/ios/RNVIClientModule.m +++ b/ios/RNVIClientModule.m @@ -80,7 +80,7 @@ - (void)stopObserving { RCT_EXPORT_METHOD(initWithOptions:(NSDictionary *)options) { VILogLevel logLevel = [RNVIUtils convertLogLevelFromString:[options objectForKey:@"logLevel"]]; [VIClient setLogLevel:logLevel]; - [VIClient setVersionExtension:@"react-1.40.2"]; + [VIClient setVersionExtension:@"react-1.41.0"]; NSString *bundleId = [options objectForKey:@"bundleId"]; if (bundleId) { _client = [RNVICallManager getClientWithBundleId:bundleId]; diff --git a/package.json b/package.json index b5dbb3c..4978270 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-voximplant", - "version": "1.40.2", + "version": "1.41.0", "description": "VoxImplant Mobile SDK for embedding voice and video communication into React Native apps.", "nativePackage": true, "keywords": [ diff --git a/react-native-voximplant.podspec b/react-native-voximplant.podspec index 7225ac2..a0bdeb4 100644 --- a/react-native-voximplant.podspec +++ b/react-native-voximplant.podspec @@ -10,7 +10,7 @@ Pod::Spec.new do |s| s.homepage = 'https://github.com/voximplant/react-native-voximplant' s.source = {:path => './ios/'} s.summary = 'RN voximplant' - s.version = '1.40.2' + s.version = '1.41.0' s.dependency 'VoxImplantSDK', '2.52.0' if fabric_enabled s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"