Skip to content

Commit

Permalink
Release version 10.0.0 (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
jethrocarr committed Dec 15, 2023
1 parent c2335a4 commit 1d50315
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected static void setWrapperInfo() {

Method setWrapperMethod = SailthruMobile.Companion.getClass().getDeclaredMethod("setWrapper", cArg);
setWrapperMethod.setAccessible(true);
setWrapperMethod.invoke(SailthruMobile.Companion, "React Native", "9.0.0");
setWrapperMethod.invoke(SailthruMobile.Companion, "React Native", "10.0.0");
} catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException e) {
e.printStackTrace();
}
Expand Down
2 changes: 1 addition & 1 deletion ios/RNSailthruMobile.m
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ - (instancetype)initWithDisplayInAppNotifications:(BOOL)displayNotifications {
_messageStream = [STMMessageStream new];

[_messageStream setDelegate:self];
[_sailthruMobile setWrapperName:@"React Native" andVersion:@"9.0.0"];
[_sailthruMobile setWrapperName:@"React Native" andVersion:@"10.0.0"];
}
return self;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"type": "git",
"url": "git+https://github.com/sailthru/sailthru-mobile-react-native-sdk.git"
},
"version": "9.0.0",
"version": "10.0.0",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.1.6",
Expand Down

0 comments on commit 1d50315

Please sign in to comment.