Skip to content

Commit

Permalink
Upgrade React Native SDK to 3.0.2 for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
James Harton committed May 10, 2019
1 parent 020c455 commit 2adefae
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected static void setWrapperInfo() {

setWrapperMethod = Carnival.class.getDeclaredMethod("setWrapper", cArg);
setWrapperMethod.setAccessible(true);
setWrapperMethod.invoke(null, "React Native", "3.0.1");
setWrapperMethod.invoke(null, "React Native", "3.0.2");
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
Expand Down
8 changes: 4 additions & 4 deletions ios/CarnivalSDKReactNative.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
files = (
);
inputPaths = (
"${SRCROOT}/Pods/Target Support Files/Pods-CarnivalSDKReactNativeTests/Pods-CarnivalSDKReactNativeTests-frameworks.sh",
"${PODS_ROOT}/Target Support Files/Pods-CarnivalSDKReactNativeTests/Pods-CarnivalSDKReactNativeTests-frameworks.sh",
"${PODS_ROOT}/Carnival/Carnival.framework",
);
name = "[CP] Embed Pods Frameworks";
Expand All @@ -248,7 +248,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CarnivalSDKReactNativeTests/Pods-CarnivalSDKReactNativeTests-frameworks.sh\"\n";
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-CarnivalSDKReactNativeTests/Pods-CarnivalSDKReactNativeTests-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
3BC764DC5DE02361F52F7E56 /* [CP] Check Pods Manifest.lock */ = {
Expand All @@ -275,7 +275,7 @@
files = (
);
inputPaths = (
"${SRCROOT}/Pods/Target Support Files/Pods-CarnivalSDKReactNativeTests/Pods-CarnivalSDKReactNativeTests-resources.sh",
"${PODS_ROOT}/Target Support Files/Pods-CarnivalSDKReactNativeTests/Pods-CarnivalSDKReactNativeTests-resources.sh",
"${PODS_ROOT}/Carnival/Carnival.framework/[email protected]",
"${PODS_ROOT}/Carnival/Carnival.framework/[email protected]",
"${PODS_ROOT}/Carnival/Carnival.framework/[email protected]",
Expand Down Expand Up @@ -316,7 +316,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CarnivalSDKReactNativeTests/Pods-CarnivalSDKReactNativeTests-resources.sh\"\n";
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-CarnivalSDKReactNativeTests/Pods-CarnivalSDKReactNativeTests-resources.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
Expand Down
2 changes: 1 addition & 1 deletion ios/RNCarnival.m
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ -(instancetype)initWithDisplayInAppNotifications:(BOOL)displayNotifications {
if(self) {
self.displayInAppNotifications = displayNotifications;
[CarnivalMessageStream setDelegate:self];
[Carnival setWrapperName:@"React Native" andVersion:@"3.0.1"];
[Carnival setWrapperName:@"React Native" andVersion:@"3.0.2"];
}
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.0.1",
"version": "3.0.2",
"devDependencies": {
"react-native": "^0.56.0"
}
Expand Down

0 comments on commit 2adefae

Please sign in to comment.