Skip to content

Commit

Permalink
Updates for 0.12.11 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
sojanpr committed Sep 20, 2016
1 parent 699eb5c commit 719096d
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Branch-SDK/Branch-SDK/BNCConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef Branch_SDK_Config_h
#define Branch_SDK_Config_h

#define SDK_VERSION @"0.12.10"
#define SDK_VERSION @"0.12.11"

#define BNC_PROD_ENV
//#define BNC_STAGE_ENV
Expand Down
4 changes: 2 additions & 2 deletions Branch-SDK/Branch-SDK/Branch.m
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,7 @@ + (NSString *)bundleIdentifier {
}

+ (NSString *)kitDisplayVersion {
return @"0.12.10";
return @"0.12.11";
}

@end
@end
Binary file modified Branch.framework/Versions/A/Branch
Binary file not shown.
2 changes: 1 addition & 1 deletion Branch.framework/Versions/A/Headers/BNCConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef Branch_SDK_Config_h
#define Branch_SDK_Config_h

#define SDK_VERSION @"0.12.10"
#define SDK_VERSION @"0.12.11"

#define BNC_PROD_ENV
//#define BNC_STAGE_ENV
Expand Down
1 change: 1 addition & 0 deletions Branch.framework/Versions/A/Headers/BNCPreferenceHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
@property (assign, nonatomic) NSTimeInterval timeout;
@property (strong, nonatomic) NSString *externalIntentURI;
@property (strong, nonatomic) NSMutableDictionary *savedAnalyticsData;
@property (assign, nonatomic) NSInteger installRequestDelay;

+ (BNCPreferenceHelper *)preferenceHelper;

Expand Down
4 changes: 3 additions & 1 deletion Branch.framework/Versions/A/Headers/Branch.h
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
but that UL is not a Facebook UL. Some developers prefer not to modify
`application:didFinishLaunchingWithOptions:` to always return `YES` and should use this method instead.
*/
- (void)accountForFacebookSDKPreventingAppLaunch;
- (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."))));

- (void)suppressWarningLogs;

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

- (void)resumeInit;

- (void)setInstallRequestDelay:(NSInteger)installRequestDelay;

#pragma mark - Session Item methods

///--------------------
Expand Down
2 changes: 1 addition & 1 deletion Branch.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Branch"
s.version = "0.12.10"
s.version = "0.12.11"
s.summary = "Create an HTTP URL for any piece of content in your app"
s.description = <<-DESC
- Want the highest possible conversions on your sharing feature?
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Branch iOS SDK change log

- v0.12.11
* Support for Carthage sub modules
* Fix for few swift compatibility issues

- v0.12.10
* Fix for issue causing initsession hang on cold start from universal link
* Adding few crash protection
Expand Down

0 comments on commit 719096d

Please sign in to comment.