Skip to content

Commit

Permalink
release: Set version to 8.0.0 (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
igstewart3 authored Aug 26, 2022
1 parent 537337b commit 05ce085
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 @@ -102,7 +102,7 @@ protected static void setWrapperInfo() {

Method setWrapperMethod = SailthruMobile.Companion.getClass().getDeclaredMethod("setWrapper", cArg);
setWrapperMethod.setAccessible(true);
setWrapperMethod.invoke(SailthruMobile.Companion, "React Native", "7.0.1");
setWrapperMethod.invoke(SailthruMobile.Companion, "React Native", "8.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 @@ -51,7 +51,7 @@ -(instancetype)initWithDisplayInAppNotifications:(BOOL)displayNotifications {
_messageStream = [STMMessageStream new];

[_messageStream setDelegate:self];
[_sailthruMobile setWrapperName:@"React Native" andVersion:@"7.0.1"];
[_sailthruMobile setWrapperName:@"React Native" andVersion:@"8.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/carnivalmobile/carnival-sdk-react-native.git"
},
"version": "7.0.1",
"version": "8.0.0",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.1.6",
Expand Down

0 comments on commit 05ce085

Please sign in to comment.