diff --git a/Branch-SDK/Branch-SDK/BNCConfig.h b/Branch-SDK/Branch-SDK/BNCConfig.h index e347370d4..37c3445d1 100644 --- a/Branch-SDK/Branch-SDK/BNCConfig.h +++ b/Branch-SDK/Branch-SDK/BNCConfig.h @@ -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 diff --git a/Branch-SDK/Branch-SDK/Branch.m b/Branch-SDK/Branch-SDK/Branch.m index b6b996460..5ab3b481a 100644 --- a/Branch-SDK/Branch-SDK/Branch.m +++ b/Branch-SDK/Branch-SDK/Branch.m @@ -1368,7 +1368,7 @@ + (NSString *)bundleIdentifier { } + (NSString *)kitDisplayVersion { - return @"0.12.10"; + return @"0.12.11"; } -@end +@end \ No newline at end of file diff --git a/Branch.framework/Versions/A/Branch b/Branch.framework/Versions/A/Branch index 272b528fe..ea83ab8d9 100644 Binary files a/Branch.framework/Versions/A/Branch and b/Branch.framework/Versions/A/Branch differ diff --git a/Branch.framework/Versions/A/Headers/BNCConfig.h b/Branch.framework/Versions/A/Headers/BNCConfig.h index e347370d4..37c3445d1 100644 --- a/Branch.framework/Versions/A/Headers/BNCConfig.h +++ b/Branch.framework/Versions/A/Headers/BNCConfig.h @@ -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 diff --git a/Branch.framework/Versions/A/Headers/BNCPreferenceHelper.h b/Branch.framework/Versions/A/Headers/BNCPreferenceHelper.h index 3ef2272a9..f04784104 100644 --- a/Branch.framework/Versions/A/Headers/BNCPreferenceHelper.h +++ b/Branch.framework/Versions/A/Headers/BNCPreferenceHelper.h @@ -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; diff --git a/Branch.framework/Versions/A/Headers/Branch.h b/Branch.framework/Versions/A/Headers/Branch.h index 1f2602d7b..cfe262330 100644 --- a/Branch.framework/Versions/A/Headers/Branch.h +++ b/Branch.framework/Versions/A/Headers/Branch.h @@ -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; @@ -468,6 +468,8 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) { - (void)resumeInit; +- (void)setInstallRequestDelay:(NSInteger)installRequestDelay; + #pragma mark - Session Item methods ///-------------------- diff --git a/Branch.podspec b/Branch.podspec index bdc52f443..f018be6d2 100644 --- a/Branch.podspec +++ b/Branch.podspec @@ -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? diff --git a/ChangeLog.md b/ChangeLog.md index 3379dfb54..585252a8b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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