Skip to content

Commit b9f6a98

Browse files
committed
Release 0.28.1.
1 parent 912492d commit b9f6a98

File tree

13 files changed

+25
-30
lines changed

13 files changed

+25
-30
lines changed

Branch-SDK/Branch-SDK/BNCConfig.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
BOOL const BNC_API_PINNED = NO;
1313
NSString * const BNC_API_VERSION = @"v1";
1414
NSString * const BNC_LINK_URL = @"https://bnc.lt";
15-
NSString * const BNC_SDK_VERSION = @"0.28.0";
15+
NSString * const BNC_SDK_VERSION = @"0.28.1";

Branch-TestBed/Framework-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.28.0</string>
20+
<string>0.28.1</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.28.0</string>
24+
<string>0.28.1</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>NSHumanReadableCopyright</key>

Branch.framework/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.28.0</string>
20+
<string>0.28.1</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.28.0</string>
24+
<string>0.28.1</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>NSHumanReadableCopyright</key>

Branch.framework/Versions/A/Branch

-495 KB
Binary file not shown.

Branch.framework/Versions/A/Headers/BNCPreferenceHelper.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,6 @@ NSURL* /* _Nonnull */ BNCURLForBranchDirectory(void);
7676
- (NSInteger)getCreditCount;
7777
- (NSInteger)getCreditCountForBucket:(NSString *)bucket;
7878

79-
- (void)updateBranchViewCount:(NSString *)branchViewID;
80-
- (NSInteger)getBranchViewCount:(NSString *)branchViewID;
81-
8279
- (void)setRequestMetadataKey:(NSString *)key value:(NSObject *)value;
8380
- (NSMutableDictionary *)requestMetadataDictionary;
8481

Branch.framework/Versions/A/Headers/Branch.h

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@
3434
#import "BranchDelegate.h"
3535
#import "BranchShareLink.h"
3636
#import "BranchUniversalObject.h"
37-
#import "BranchView.h"
38-
#import "BranchViewHandler.h"
3937
#import "UIViewController+Branch.h"
4038

4139
/**
@@ -627,14 +625,6 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
627625
*/
628626
- (void)delayInitToCheckForSearchAds;
629627

630-
/**
631-
Set the SDK into Apple Search Ad debug mode where it passes fake campaign params back 100%
632-
633-
@warning This should not be used in production.
634-
*/
635-
- (void)setAppleSearchAdsDebugMode;
636-
637-
638628
/**
639629
Specify the time to wait in seconds between retries in the case of a Branch server error
640630
@@ -929,12 +919,14 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
929919

930920
/**
931921
Send a user action to the server with additional state items. Some examples actions could be things like `viewed_personal_welcome`, `purchased_an_item`, etc.
932-
922+
933923
@param action The action string.
934924
@param state The additional state items associated with the action.
935-
@param branchViewCallback Callback for Branch view state
925+
@param branchViewCallback Callback for Branch view state.
926+
927+
@deprecated Please use userCompletedAction:action:state instead
936928
*/
937-
- (void)userCompletedAction:(NSString *)action withState:(NSDictionary *)state withDelegate:(id)branchViewCallback;
929+
- (void)userCompletedAction:(NSString *)action withState:(NSDictionary *)state withDelegate:(id)branchViewCallback __attribute__((deprecated(("This API is deprecated. Please use userCompletedAction:action:state instead."))));
938930

939931
/**
940932
Sends a user commerce event to the server.
@@ -948,12 +940,11 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
948940
@param metadata Optional metadata you may want add to the event.
949941
@param completion The optional completion callback.
950942
951-
deprecated Please use BNCEvent to track commerce events instead.
943+
@deprecated Please use BNCEvent to track commerce events instead.
952944
*/
953945
- (void) sendCommerceEvent:(BNCCommerceEvent*)commerceEvent
954946
metadata:(NSDictionary<NSString*,id>*)metadata
955-
withCompletion:(void (^) (NSDictionary*response, NSError*error))completion;
956-
//__attribute__((deprecated(("Please use BranchEvent to track commerce events."))));
947+
withCompletion:(void (^) (NSDictionary*response, NSError*error))completion __attribute__((deprecated(("Please use BranchEvent to track commerce events."))));
957948

958949
#pragma mark - Short Url Sync methods
959950

Branch.framework/Versions/A/Headers/BranchConstants.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ extern NSString * const BRANCH_REQUEST_KEY_IS_SIMULATOR;
6565
extern NSString * const BRANCH_REQUEST_KEY_LOG;
6666
extern NSString * const BRANCH_REQUEST_KEY_EXTERNAL_INTENT_URI;
6767
extern NSString * const BRANCH_REQUEST_KEY_INSTRUMENTATION;
68+
extern NSString * const BRANCH_REQUEST_KEY_APPLE_RECEIPT;
69+
extern NSString * const BRANCH_REQUEST_KEY_APPLE_TESTFLIGHT;
6870

6971
extern NSString * const BRANCH_REQUEST_ENDPOINT_SET_IDENTITY;
7072
extern NSString * const BRANCH_REQUEST_ENDPOINT_APP_LINK_SETTINGS;

Branch.framework/Versions/A/Headers/BranchEvent.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ typedef NS_ENUM(NSInteger, BranchEventAdType) {
7171
- (instancetype _Nonnull) init __attribute((unavailable));
7272
+ (instancetype _Nonnull) new __attribute((unavailable));
7373

74+
@property (nonatomic, strong) NSString*_Nullable alias;
7475
@property (nonatomic, strong) NSString*_Nullable transactionID;
7576
@property (nonatomic, strong) BNCCurrency _Nullable currency;
7677
@property (nonatomic, strong) NSDecimalNumber*_Nullable revenue;

Branch.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Branch"
3-
s.version = "0.28.0"
3+
s.version = "0.28.1"
44
s.summary = "Create an HTTP URL for any piece of content in your app"
55
s.description = <<-DESC
66
- Want the highest possible conversions on your sharing feature?

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Branch iOS SDK Change Log
22

3+
- v0.28.1
4+
* _*Master Release*_ - Sept 06, 2019
5+
* Fix release script merge failure.
6+
37
- v0.28.0
48
* _*Master Release*_ - Sept 06, 2019
59
* SDK-238 Add Standard Event alias

0 commit comments

Comments
 (0)