From f76336ed73045b4ede8ba33e8c4c4b9afe5e9255 Mon Sep 17 00:00:00 2001 From: YuliaGrigorieva Date: Mon, 18 Mar 2024 19:23:06 +0300 Subject: [PATCH] Update changelog and sdk version to 1.40.2 --- CHANGELOG.md | 3 +++ .../main/java/com/voximplant/reactnative/VIClientModule.java | 2 +- ios/RNVIClientModule.m | 2 +- package.json | 2 +- react-native-voximplant.podspec | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66bf3ee..f020330 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +### 1.40.2 +- Update RNVoximplant.xcodeproj with the actual source code for iOS platform + ### 1.40.1 - Add ability to end calls from native code diff --git a/android/src/main/java/com/voximplant/reactnative/VIClientModule.java b/android/src/main/java/com/voximplant/reactnative/VIClientModule.java index 218da64..ad9b7ae 100644 --- a/android/src/main/java/com/voximplant/reactnative/VIClientModule.java +++ b/android/src/main/java/com/voximplant/reactnative/VIClientModule.java @@ -101,7 +101,7 @@ public String getName() { //region React methods @ReactMethod public void init(ReadableMap settings) { - Voximplant.subVersion = "react-1.40.1"; + Voximplant.subVersion = "react-1.40.2"; ClientConfig config = Utils.convertClientConfigFromMap(settings); mClient = Voximplant.getClientInstance(Executors.newSingleThreadExecutor(), mReactContext, config); mClient.setClientIncomingCallListener(this); diff --git a/ios/RNVIClientModule.m b/ios/RNVIClientModule.m index 26cff05..58209a6 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.1"]; + [VIClient setVersionExtension:@"react-1.40.2"]; NSString *bundleId = [options objectForKey:@"bundleId"]; if (bundleId) { _client = [RNVICallManager getClientWithBundleId:bundleId]; diff --git a/package.json b/package.json index 38d438e..b5dbb3c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-voximplant", - "version": "1.40.1", + "version": "1.40.2", "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 10ea710..f02fbeb 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.1' + s.version = '1.40.2' s.dependency 'VoxImplantSDK', '2.50.0' if fabric_enabled s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"