diff --git a/Leanplum-iOS-SDK.podspec b/Leanplum-iOS-SDK.podspec index 41943ed6..1e9d5383 100644 --- a/Leanplum-iOS-SDK.podspec +++ b/Leanplum-iOS-SDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Leanplum-iOS-SDK' - s.version = '1.3.10.1' + s.version = '1.3.11' s.summary = 'Mobile Marketing Platform. Integrated. ROI Engine.' s.description = 'Leanplum’s integrated solution delivers meaningful engagement across messaging and the in-app experience. We offer Messaging, Automation, App Editing, Personalization, A/B Testing, and Analytics.' s.homepage = 'https://www.leanplum.com' @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.social_media_url = 'https://twitter.com/leanplum' s.platform = :ios, '5.0' s.requires_arc = true - s.source = { :git => 'https://github.com/Leanplum/Leanplum-iOS-SDK.git', :tag => '1.3.10.1'} + s.source = { :git => 'https://github.com/Leanplum/Leanplum-iOS-SDK.git', :tag => '1.3.11'} s.frameworks = 'CFNetwork', 'Foundation', 'Security', 'SystemConfiguration', 'UIKit' s.weak_frameworks = 'AdSupport', 'StoreKit' s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' } diff --git a/Leanplum.framework/Headers/Leanplum.h b/Leanplum.framework/Headers/Leanplum.h index d0566a2b..aada9af1 100644 --- a/Leanplum.framework/Headers/Leanplum.h +++ b/Leanplum.framework/Headers/Leanplum.h @@ -1,6 +1,6 @@ // // Leanplum.h -// Leanplum iOS SDK Version 1.3.10.1 +// Leanplum iOS SDK Version 1.3.11 // // Copyright (c) 2016 Leanplum. All rights reserved. // @@ -360,9 +360,17 @@ typedef enum { /** * Handles a push notification for apps that use Background Notifications. * Without background notifications, Leanplum handles them automatically. + * Deprecated. Leanplum calls handleNotification automatically now. If you + * implement application:didReceiveRemoteNotification:fetchCompletionHandler: + * in your app delegate, you should remove any calls to [Leanplum handleNotification] + * and call the completion handler yourself. */ + (void)handleNotification:(NSDictionary *)userInfo - fetchCompletionHandler:(LeanplumFetchCompletionBlock)completionHandler; + fetchCompletionHandler:(LeanplumFetchCompletionBlock)completionHandler + __attribute__((deprecated("Leanplum calls handleNotification automatically now. If you " + "implement application:didReceiveRemoteNotification:fetchCompletionHandler: in your app " + "delegate, you should remove any calls to [Leanplum handleNotification] and call the " + "completion handler yourself."))); #if LP_NOT_TV /** diff --git a/Leanplum.framework/Leanplum b/Leanplum.framework/Leanplum index 0a5525d5..9523e893 100644 Binary files a/Leanplum.framework/Leanplum and b/Leanplum.framework/Leanplum differ