Skip to content

Commit

Permalink
Release version 1.33.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyorbin committed Sep 28, 2021
1 parent 7ed2e65 commit 35888b4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions AppboyProject/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ PODS:
- React-cxxreact (= 0.61.5)
- React-jsi (= 0.61.5)
- React-jsinspector (0.61.5)
- react-native-appboy-sdk (1.33.0):
- react-native-appboy-sdk (1.33.1):
- Appboy-iOS-SDK (~> 4.3.4)
- React
- React-RCTActionSheet (0.61.5):
Expand Down Expand Up @@ -350,7 +350,7 @@ SPEC CHECKSUMS:
React-jsi: cb2cd74d7ccf4cffb071a46833613edc79cdf8f7
React-jsiexecutor: d5525f9ed5f782fdbacb64b9b01a43a9323d2386
React-jsinspector: fa0ecc501688c3c4c34f28834a76302233e29dc0
react-native-appboy-sdk: f1a5fda43cad5f3e9ce01d81ed64edffcf5f4bed
react-native-appboy-sdk: 91fb3c1b9d27fc1de2dc90c0239eecdb64929b44
React-RCTActionSheet: 600b4d10e3aea0913b5a92256d2719c0cdd26d76
React-RCTAnimation: 791a87558389c80908ed06cc5dfc5e7920dfa360
React-RCTBlob: d89293cc0236d9cb0933d85e430b0bbe81ad1d72
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.33.1

##### Fixed
- Fixed an issue introduced in 1.33.0 that caused a build error on iOS.

## 1.33.0

##### ⚠ Breaking
Expand Down
6 changes: 3 additions & 3 deletions iOS/AppboyReactBridge/AppboyReactBridge/AppboyReactBridge.m
Original file line number Diff line number Diff line change
Expand Up @@ -250,13 +250,13 @@ - (NSArray *)parseArray:(NSArray *)array {
}

RCT_EXPORT_METHOD(addToSubscriptionGroup:(NSString *)groupId callback:(RCTResponseSenderBlock)callback) {
RCTLogInfo(@"[Appboy sharedInstance].user addtoSubscriptionGroup: = %@", groupId);
[self reportResultWithCallback:callback andError:nil andResult:@([[Appboy sharedInstance].user addToSubscriptionGroup:groupId])];
RCTLogInfo(@"[Appboy sharedInstance].user addToSubscriptionGroupWithGroupId:groupId: = %@", groupId);
[self reportResultWithCallback:callback andError:nil andResult:@([[Appboy sharedInstance].user addToSubscriptionGroupWithGroupId:groupId])];
}

RCT_EXPORT_METHOD(removeFromSubscriptionGroup:(NSString *)groupId callback:(RCTResponseSenderBlock)callback) {
RCTLogInfo(@"[Appboy sharedInstance].user removeFromSubscriptionGroup: = %@", groupId);
[self reportResultWithCallback:callback andError:nil andResult:@([[Appboy sharedInstance].user removeFromSubscriptionGroup:groupId])];
[self reportResultWithCallback:callback andError:nil andResult:@([[Appboy sharedInstance].user removeFromSubscriptionGroupWithGroupId:groupId])];
}

RCT_EXPORT_METHOD(setEmailNotificationSubscriptionType:(ABKNotificationSubscriptionType)emailNotificationSubscriptionType callback:(RCTResponseSenderBlock)callback) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-appboy-sdk",
"version": "1.33.0",
"version": "1.33.1",
"description": "Braze SDK for React Native.",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 35888b4

Please sign in to comment.