Skip to content

Commit 719096d

Browse files
committed
Updates for 0.12.11 release.
1 parent 699eb5c commit 719096d

File tree

8 files changed

+13
-6
lines changed

8 files changed

+13
-6
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.10"
12+
#define SDK_VERSION @"0.12.11"
1313

1414
#define BNC_PROD_ENV
1515
//#define BNC_STAGE_ENV

Branch-SDK/Branch-SDK/Branch.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1368,7 +1368,7 @@ + (NSString *)bundleIdentifier {
13681368
}
13691369

13701370
+ (NSString *)kitDisplayVersion {
1371-
return @"0.12.10";
1371+
return @"0.12.11";
13721372
}
13731373

1374-
@end
1374+
@end

Branch.framework/Versions/A/Branch

24.6 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.10"
12+
#define SDK_VERSION @"0.12.11"
1313

1414
#define BNC_PROD_ENV
1515
//#define BNC_STAGE_ENV

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
@property (assign, nonatomic) NSTimeInterval timeout;
3737
@property (strong, nonatomic) NSString *externalIntentURI;
3838
@property (strong, nonatomic) NSMutableDictionary *savedAnalyticsData;
39+
@property (assign, nonatomic) NSInteger installRequestDelay;
3940

4041
+ (BNCPreferenceHelper *)preferenceHelper;
4142

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
448448
but that UL is not a Facebook UL. Some developers prefer not to modify
449449
`application:didFinishLaunchingWithOptions:` to always return `YES` and should use this method instead.
450450
*/
451-
- (void)accountForFacebookSDKPreventingAppLaunch;
451+
- (void)accountForFacebookSDKPreventingAppLaunch __attribute__((deprecated(("Please ensure application:didFinishLaunchingWithOptions: always returns YES/true instead of using this method. It will be removed in a future release."))));
452452

453453
- (void)suppressWarningLogs;
454454

@@ -468,6 +468,8 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
468468

469469
- (void)resumeInit;
470470

471+
- (void)setInstallRequestDelay:(NSInteger)installRequestDelay;
472+
471473
#pragma mark - Session Item methods
472474

473475
///--------------------

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.10"
3+
s.version = "0.12.11"
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.12.11
4+
* Support for Carthage sub modules
5+
* Fix for few swift compatibility issues
6+
37
- v0.12.10
48
* Fix for issue causing initsession hang on cold start from universal link
59
* Adding few crash protection

0 commit comments

Comments
 (0)