Skip to content

Commit

Permalink
Update changelog and sdk version to 1.40.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
YuliaGrigorieva committed Jul 11, 2023
1 parent f447cbd commit a45c59d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

### 1.40.0-beta
- This is a beta SDK version. Not recommended for production use.
- Update native Android and iOS modules to use Voximplant Android SDK 2.37.0-beta and Voximplant iOS SDK 2.50.0-beta
- Endpoint.startReceiving and Endpoint.stopReceiving API return type void instead of Promise. The result of the API call is now provided via events:
- EndpointEvents.StartReceivingVideoStream
- EndpointEvents.StopReceivingVideoStream
- Introduce new API to handle video receive stop on a remote video stream:
- EndpointEvents.StartReceivingVideoStream
- EndpointEvents.StopReceivingVideoStream
- Introduce new API VideoStreamReceiveStopReason to handle the reason for video receive stop on a remote video stream.

### 1.38.0
- Update native Android and iOS modules to use Voximplant Android SDK 2.35.3 and Voximplant iOS SDK 2.48.2
- Minimum supported iOS version is changed to 11.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public String getName() {
//region React methods
@ReactMethod
public void init(ReadableMap settings) {
Voximplant.subVersion = "react-1.38.0";
Voximplant.subVersion = "react-1.40.0";
ClientConfig config = Utils.convertClientConfigFromMap(settings);
mClient = Voximplant.getClientInstance(Executors.newSingleThreadExecutor(), mReactContext, config);
mClient.setClientIncomingCallListener(this);
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.38.0"];
[VIClient setVersionExtension:@"react-1.40.0"];
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.38.0",
"version": "1.40.0-beta",
"description": "VoxImplant Mobile SDK for embedding voice and video communication into React Native apps.",
"nativePackage": true,
"keywords": [
Expand Down

0 comments on commit a45c59d

Please sign in to comment.