Skip to content

Commit

Permalink
Update version to 12.0.1 for release (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
igstewart3 authored Sep 15, 2024
1 parent 71cc6e4 commit 8cbe57a
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 @@ -29,7 +29,7 @@ class RNMarigoldModule(reactContext: ReactApplicationContext) : ReactContextBase
val setWrapperMethod = companionClass.getDeclaredMethod("setWrapper", *cArg)

setWrapperMethod.isAccessible = true
setWrapperMethod.invoke(Marigold.Companion, "React Native", "12.0.0")
setWrapperMethod.invoke(Marigold.Companion, "React Native", "12.0.1")
} catch (e: NoSuchMethodException) {
e.printStackTrace()
} catch (e: IllegalAccessException) {
Expand Down
2 changes: 1 addition & 1 deletion ios/RNMarigold.m
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ @implementation RNMarigold

- (instancetype)init {
_marigold = [Marigold new];
[_marigold setWrapperName:@"React Native" andVersion:@"12.0.0"];
[_marigold setWrapperName:@"React Native" andVersion:@"12.0.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 @@ -30,7 +30,7 @@
"type": "git",
"url": "git+https://github.com/sailthru/sailthru-mobile-react-native-sdk.git"
},
"version": "12.0.0",
"version": "12.0.1",
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
Expand Down

0 comments on commit 8cbe57a

Please sign in to comment.