Skip to content

Commit

Permalink
Merge pull request #41 from carnivalmobile/release-3.3.1
Browse files Browse the repository at this point in the history
Update version to 3.3.1 for release
  • Loading branch information
igstewart3 authored Nov 14, 2019
2 parents 9f3ec01 + 2ef61da commit 7b6933c
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() {

setWrapperMethod = Carnival.class.getDeclaredMethod("setWrapper", cArg);
setWrapperMethod.setAccessible(true);
setWrapperMethod.invoke(null, "React Native", "3.3.0");
setWrapperMethod.invoke(null, "React Native", "3.3.1");
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
Expand Down
2 changes: 1 addition & 1 deletion ios/RNCarnival.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ -(instancetype)initWithDisplayInAppNotifications:(BOOL)displayNotifications {
if(self) {
self.displayInAppNotifications = displayNotifications;
[CarnivalMessageStream setDelegate:self];
[Carnival setWrapperName:@"React Native" andVersion:@"3.3.0"];
[Carnival setWrapperName:@"React Native" andVersion:@"3.3.1"];
}
return self;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"type": "git",
"url": "git+https://github.com/carnivalmobile/carnival-sdk-react-native.git"
},
"version": "3.3.0",
"version": "3.3.1",
"devDependencies": {
"react-native": "^0.56.0"
},
Expand Down

0 comments on commit 7b6933c

Please sign in to comment.