Skip to content

Commit

Permalink
Release 0.25.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Smith committed Oct 22, 2018
1 parent 66ea9c2 commit 7276778
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Branch.framework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.25.6</string>
<string>0.25.7</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.25.6</string>
<string>0.25.7</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSHumanReadableCopyright</key>
Expand Down
Binary file modified Branch.framework/Versions/A/Branch
Binary file not shown.
2 changes: 1 addition & 1 deletion Branch.framework/Versions/A/Headers/BNCCommerceEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ NSArray<BNCCurrency>*_Nonnull BNCCurrencyAllCurrencies(void);
@end


@interface BranchCommerceEventRequest : BNCServerRequest <NSCoding>
@interface BranchCommerceEventRequest : BNCServerRequest <NSSecureCoding>

- (instancetype _Nonnull) initWithCommerceEvent:(BNCCommerceEvent*_Nonnull)commerceEvent
metadata:(NSDictionary*_Nullable)dictionary
Expand Down
2 changes: 1 addition & 1 deletion Branch.framework/Versions/A/Headers/BNCLinkData.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ typedef NS_ENUM(NSUInteger, BranchLinkType) {
BranchLinkTypeOneTimeUse = 1
};

@interface BNCLinkData : NSObject
@interface BNCLinkData : NSObject <NSSecureCoding>

@property (strong, nonatomic) NSMutableDictionary *data;

Expand Down
2 changes: 1 addition & 1 deletion Branch.framework/Versions/A/Headers/BNCServerRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#import "BNCServerInterface.h"

@interface BNCServerRequest : NSObject <NSCoding>
@interface BNCServerRequest : NSObject <NSSecureCoding>

- (void)makeRequest:(BNCServerInterface *)serverInterface key:(NSString *)key callback:(BNCServerCallback)callback;
- (void)processResponse:(BNCServerResponse *)response error:(NSError *)error;
Expand Down
1 change: 1 addition & 0 deletions Branch.framework/Versions/A/Headers/Branch.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#import "BNCAvailability.h"
#import "BranchActivityItemProvider.h"
#import "BranchConstants.h"
#import "BranchCSSearchableItemAttributeSet.h"
#import "BranchDeepLinkingController.h"
#import "BranchEvent.h"
#import "BranchLinkProperties.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
//
// BranchCSSearchableItemAttributeSet.h
// Branch-TestBed
//
// Created by Derrick Staten on 9/8/15.
// Copyright © 2015 Branch Metrics. All rights reserved.
//

#if __has_feature(modules)
@import Foundation;
#else
#import <Foundation/Foundation.h>
#endif

#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 90000
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wpartial-availability"

#if __has_feature(modules)
@import CoreSpotlight;
@import MobileCoreServices;
#else
#import <CoreSpotlight/CoreSpotlight.h>
#import <MobileCoreServices/MobileCoreServices.h>
#endif

@interface BranchCSSearchableItemAttributeSet : CSSearchableItemAttributeSet

- (id)init;
- (id)initWithContentType:(NSString *)type;
- (void)indexWithCallback:(void (^) (NSString * url,
NSString * spotlightIdentifier,
NSError * error))callback;

@property (nonatomic, strong) NSDictionary *params;
@property (nonatomic, strong) NSSet *keywords;
@property (nonatomic) BOOL publiclyIndexable; //!< Defaults to YES

@end

#pragma clang diagnostic pop
#endif
2 changes: 1 addition & 1 deletion Branch.framework/Versions/A/Headers/BranchEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ FOUNDATION_EXPORT BranchStandardEvent _Nonnull BranchStandardEventUnlockAchievem

#pragma mark - BranchEventRequest

@interface BranchEventRequest : BNCServerRequest <NSCoding>
@interface BranchEventRequest : BNCServerRequest <NSSecureCoding>

- (instancetype _Nonnull) initWithServerURL:(NSURL*_Nonnull)serverURL
eventDictionary:(NSDictionary*_Nullable)eventDictionary
Expand Down
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Branch iOS SDK Change Log

- v0.25.7
* _*Master Release*_ - October 18, 2018
* _*Master Release*_ - October 22, 2018
* DEVEX-861 Fix inconsistent unit tests. (#882)
- Fixed tests that were intermittently failing due to presumed app state.
* DEVEX-850 iOS 12 Background Networking Change (#881)
Expand Down
4 changes: 2 additions & 2 deletions checksum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#checksum for Branch-iOS-SDK found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-SDK.zip
7144dc9696b450f1f0c2f2bb64a7ebcda2ac1564 Branch-iOS-SDK.zip
fbec17d1c251418aece5bc852ca89e4e70f22269 Branch-iOS-SDK.zip
#checksum for Branch-iOS-TestBed found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-TestBed.zip
5855484d427771da692a941ee72495e1c3a4b7df Branch-iOS-TestBed.zip
bdd7a70c2eaa3233a7a84db8d815b37694d11b09 Branch-iOS-TestBed.zip

0 comments on commit 7276778

Please sign in to comment.