Skip to content

Commit

Permalink
Release 0.25.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Smith committed Sep 14, 2018
1 parent 5d41090 commit 3f16e95
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 30 deletions.
2 changes: 1 addition & 1 deletion Branch-SDK/Branch-SDK/BNCConfig.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
BOOL const BNC_API_PINNED = YES;
NSString * const BNC_API_VERSION = @"v1";
NSString * const BNC_LINK_URL = @"https://bnc.lt";
NSString * const BNC_SDK_VERSION = @"0.25.4";
NSString * const BNC_SDK_VERSION = @"0.25.5";
4 changes: 2 additions & 2 deletions Branch-TestBed/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.4</string>
<string>0.25.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.25.4</string>
<string>0.25.5</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSHumanReadableCopyright</key>
Expand Down
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.3</string>
<string>0.25.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.25.3</string>
<string>0.25.5</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSHumanReadableCopyright</key>
Expand Down
Binary file modified Branch.framework/Versions/A/Branch
Binary file not shown.
20 changes: 18 additions & 2 deletions Branch.framework/Versions/A/Headers/Branch.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
Indicates this link is being used to trigger a deal, like a discounted rate.
`BRANCH_FEATURE_TAG_GIFT`
Indicates this link is being used to sned a gift to another user.
Indicates this link is being used to send a gift to another user.
*/
extern NSString * const BRANCH_FEATURE_TAG_SHARE;
extern NSString * const BRANCH_FEATURE_TAG_REFERRAL;
Expand Down Expand Up @@ -1631,7 +1631,23 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
- (void) sendServerRequest:(BNCServerRequest*)request;
- (void) sendServerRequestWithoutSession:(BNCServerRequest*)request;

/**
This is the block that is called each time a new Branch session is started. It is automatically set
when Branch is initialized with `initSessionWithLaunchOptions:andRegisterDeepLinkHandler`.
*/
@property (copy, nonatomic) void(^ sessionInitWithParamsCallback) (NSDictionary * params, NSError * error);

/**
This is the block that is called each time a new Branch session is started. It is automatically set
when Branch is initialized with `initSessionWithLaunchOptions:andRegisterDeepLinkHandlerUsingBranchUniversalObject`.
The difference with this callback from `sessionInitWithParamsCallback` is that it is called with a
BranchUniversalObject.
*/
@property (copy, nonatomic) void (^ sessionInitWithBranchUniversalObjectCallback)
(BranchUniversalObject * universalObject, BranchLinkProperties * linkProperties, NSError * error);

// Read-only property exposed for unit testing.
@property (strong, readonly) BNCServerInterface *serverInterface;
@property (strong, readonly) BNCServerInterface* serverInterface;
- (void) clearNetworkQueue;
@end
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.25.4"
s.version = "0.25.5"
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
7 changes: 5 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Branch iOS SDK Change Log

- v0.25.4
* QA Release - September 11, 2018
- v0.25.5
* _*Master Release*_ - September 14, 2018
* Added Apple Reminders as a scraper to prevent deferred linking (DEVEX-775).
* Fixed some Infer code analyzer warnings (DEVEX-774).
* iOS 12 Preparation (DEVEX-739).
Expand All @@ -12,6 +12,9 @@ Branch iOS SDK Change Log
* Made the session callback block publicly settable for more flexible app integrations.
* Updated the documentation as needed.

- v0.25.4
* Release preparation - September 11, 2018

- v0.25.3
* _*Master Release*_ - August 13, 2018
* Fixed an occasional double app open from being sent to Branch.
Expand Down
6 changes: 0 additions & 6 deletions Examples/UITestBed/UITestBed.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@
4DC00B3820A0A1C2002E68CD /* UITestEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC00B3720A0A1C2002E68CD /* UITestEvents.m */; };
4DC00B4020A0A214002E68CD /* UITestSafari.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC00B3F20A0A214002E68CD /* UITestSafari.m */; };
4DC00B4320A0C5F4002E68CD /* TBSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC00B4220A0C5F4002E68CD /* TBSettings.m */; };
4DED488D209BDEB9008DE877 /* OCMock.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4DED488B209BDEB9008DE877 /* OCMock.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
4DED488E209BDEB9008DE877 /* OHHTTPStubs.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4DED488C209BDEB9008DE877 /* OHHTTPStubs.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
4DFF2B6E1EEF3B150043F840 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DFF2B6D1EEF3B150043F840 /* main.m */; };
4DFF2B711EEF3B150043F840 /* TBAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DFF2B701EEF3B150043F840 /* TBAppDelegate.m */; };
4DFF2B741EEF3B150043F840 /* TBBranchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DFF2B731EEF3B150043F840 /* TBBranchViewController.m */; };
Expand Down Expand Up @@ -713,7 +711,6 @@
GCC_C_LANGUAGE_STANDARD = gnu11;
HEADER_SEARCH_PATHS = "../../Branch-SDK/Branch-SDK/**";
INFOPLIST_FILE = "../../Branch-SDK-Tests/Branch-SDK-Tests/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.Branch-SDK-Tests";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -739,7 +736,6 @@
GCC_C_LANGUAGE_STANDARD = gnu11;
HEADER_SEARCH_PATHS = "../../Branch-SDK/Branch-SDK/**";
INFOPLIST_FILE = "../../Branch-SDK-Tests/Branch-SDK-Tests/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.Branch-SDK-Tests";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -762,7 +758,6 @@
DEVELOPMENT_TEAM = 3ZNSRC9M83;
GCC_C_LANGUAGE_STANDARD = gnu11;
INFOPLIST_FILE = "UITestBed-UITests/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.UITestBed-UITests";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -782,7 +777,6 @@
DEVELOPMENT_TEAM = 3ZNSRC9M83;
GCC_C_LANGUAGE_STANDARD = gnu11;
INFOPLIST_FILE = "UITestBed-UITests/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.UITestBed-UITests";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
8 changes: 3 additions & 5 deletions Examples/WebViewExample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@ platform :ios, '9.0'

# ----- Application target

target "WebViewExample" do
target 'WebViewExample' do
project 'WebViewExample'
pod 'Branch', path: "../.."
# ----- Other app dependencies
pod "Cartography"
pod "MBProgressHUD"
# pod "TextAttributes"
pod 'Cartography', '3.0.1'
pod 'MBProgressHUD'
end

# Add custom configurations. This informs CocoaPods that Test-Debug should be treated like
Expand Down
8 changes: 4 additions & 4 deletions Examples/WebViewExample/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ PODS:
- Branch (0.25.4):
- Branch/Core (= 0.25.4)
- Branch/Core (0.25.4)
- Cartography (3.0.2)
- Cartography (3.0.1)
- MBProgressHUD (1.1.0)

DEPENDENCIES:
- Branch (from `../..`)
- Cartography
- Cartography (= 3.0.1)
- MBProgressHUD

SPEC REPOS:
Expand All @@ -21,9 +21,9 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Branch: ee6880f3b6a5ac811d81614d9af8c622ad60f60d
Cartography: 231190d7d0b3107ce8d67c54189f059a509b3760
Cartography: f8c899bb0f5cf20758644a8eea59a75e98a03a5d
MBProgressHUD: e7baa36a220447d8aeb12769bf0585582f3866d9

PODFILE CHECKSUM: 11c87f21f32687c987839149b04678394af64cd8
PODFILE CHECKSUM: bf289083f1ca29886678c9be37dab8ad91e204d4

COCOAPODS: 1.6.0.beta.1
4 changes: 2 additions & 2 deletions carthage-files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.25.4</string>
<string>0.25.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.25.4</string>
<string>0.25.5</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
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
5ecba1eef376b2136999d6974fa09c865e675bb2 Branch-iOS-SDK.zip
2fa27bf8287c678bea3b6ef8e8d503f15d4e7793 Branch-iOS-SDK.zip
#checksum for Branch-iOS-TestBed found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-TestBed.zip
0749c1cc0836a26a7d59c77794e0f3f24b4e4c50 Branch-iOS-TestBed.zip
36816db3e981a31670fc6a8eeffcb1758ee70e1b Branch-iOS-TestBed.zip
2 changes: 1 addition & 1 deletion scripts/version
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Options:
USAGE
}

version=0.25.4
version=0.25.5

if (( $# == 0 )); then
echo $version
Expand Down

0 comments on commit 3f16e95

Please sign in to comment.