Skip to content

Commit

Permalink
Update changelog and sdk version to 1.42.1
Browse files Browse the repository at this point in the history
  • Loading branch information
YuliaGrigorieva committed Dec 18, 2024
1 parent 2bd352b commit 96bc8d9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### 1.42.1
- Fix compatibility issues with React Native 0.76 on iOS platform.

### 1.42.0
- Update native Android and iOS modules to use Voximplant Android SDK 2.40.1 and Voximplant iOS SDK 2.53.0
- [ConnectOptions.node](https://voximplant.com/docs/references/reactnative/voximplant/connectoptions#node) is a required parameter to establish the connection with the Voximplant Cloud.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public String getName() {
//region React methods
@ReactMethod
public void init(ReadableMap settings) {
Voximplant.subVersion = "react-1.42.0";
Voximplant.subVersion = "react-1.42.1";
ClientConfig config = Utils.convertClientConfigFromMap(settings);
try {
mClient = Voximplant.getClientInstance(Executors.newSingleThreadExecutor(), mReactContext, config);
Expand Down
2 changes: 1 addition & 1 deletion ios/RNVIClientModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -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.42.0"];
[VIClient setVersionExtension:@"react-1.42.1"];
NSString *bundleId = [options objectForKey:@"bundleId"];
if (bundleId) {
_client = [RNVICallManager getClientWithBundleId:bundleId];
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-voximplant",
"version": "1.42.0",
"version": "1.42.1",
"description": "VoxImplant Mobile SDK for embedding voice and video communication into React Native apps.",
"nativePackage": true,
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion react-native-voximplant.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,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.42.0'
s.version = '1.42.1'
s.dependency 'VoxImplantSDK', '2.53.0'
if fabric_enabled
install_modules_dependencies(s)
Expand Down

0 comments on commit 96bc8d9

Please sign in to comment.