Skip to content

Commit fae87ea

Browse files
committed
Updates for 0.12.5 release.
1 parent 2a1c0c2 commit fae87ea

File tree

7 files changed

+22
-4
lines changed

7 files changed

+22
-4
lines changed

Branch-SDK/Branch-SDK/BNCConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef Branch_SDK_Config_h
1010
#define Branch_SDK_Config_h
1111

12-
#define SDK_VERSION @"0.12.4"
12+
#define SDK_VERSION @"0.12.5"
1313

1414
#define BNC_PROD_ENV
1515
//#define BNC_STAGE_ENV

Branch-SDK/Branch-SDK/Branch.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,7 @@ + (NSString *)bundleIdentifier {
13031303
}
13041304

13051305
+ (NSString *)kitDisplayVersion {
1306-
return @"0.12.4";
1306+
return @"0.12.5";
13071307
}
13081308

13091309
@end

Branch.framework/Versions/A/Branch

32.2 KB
Binary file not shown.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef Branch_SDK_Config_h
1010
#define Branch_SDK_Config_h
1111

12-
#define SDK_VERSION @"0.12.4"
12+
#define SDK_VERSION @"0.12.5"
1313

1414
#define BNC_PROD_ENV
1515
//#define BNC_STAGE_ENV

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,19 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
357357
*/
358358
-(void)setDeepLinkDebugMode:(NSDictionary *)debugParams;
359359

360+
/**
361+
Add a scheme to a whitelist of URI schemes that will be tracked by Branch. Default to all schemes.
362+
363+
@param the scheme to add to the whitelist, i.e. @"http", @"https" or @"myapp"
364+
*/
365+
-(void)addWhiteListedScheme:(NSString *)scheme;
366+
367+
/**
368+
Add an array of schemes to a whitelist of URI schemes that will be tracked by Branch. Default to all schemes.
369+
370+
@param the array of schemes to add to the whitelist, i.e. @[@"http", @"https", @"myapp"]
371+
*/
372+
-(void)setWhiteListedSchemes:(NSArray *)schemes;
360373

361374
/**
362375
Register your Facebook SDK's FBSDKAppLinkUtility class to be used by Branch for deferred deep linking from their platform

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.12.4"
3+
s.version = "0.12.5"
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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Branch iOS SDK change log
22

3+
- v0.12.5
4+
* New Testbed App!
5+
* fix module.map path on Carthage project
6+
* ability to whitelist URI schemes
7+
38
- v0.12.4
49
* setDebug must be called on getInstance. It's no longer a static method.
510
* referral code and promo code methods are no longer available

0 commit comments

Comments
 (0)