Skip to content

Commit d365941

Browse files
Release 2.2.0 (#1264)
1 parent 45a2d21 commit d365941

File tree

6 files changed

+18
-24
lines changed

6 files changed

+18
-24
lines changed

Branch-TestBed/Branch-SDK-Tests/BranchSetIdentityRequestTests.m

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,10 @@
1515
static NSString * const IDENTITY_TEST_USER_ID = @"foo_id";
1616

1717
@interface BranchSetIdentityRequestTests : BNCTestCase
18-
//@property (nonatomic, strong) Branch *branch;
19-
//@property (nonatomic, strong) BNCPreferenceHelper *preferenceHelper;
2018
@end
2119

2220
@implementation BranchSetIdentityRequestTests
2321

24-
//- (void)setUp {
25-
// [super setUp];
26-
// self.branch = [Branch getInstance];
27-
// self.preferenceHelper = [BNCPreferenceHelper sharedInstance];
28-
// [self.branch logout];
29-
//}
30-
//
31-
//- (void)tearDown {
32-
// self.branch = nil;
33-
// self.preferenceHelper = nil;
34-
// [super tearDown];
35-
//}
36-
3722
- (void)testRequestBody {
3823
BNCPreferenceHelper *preferenceHelper = [BNCPreferenceHelper sharedInstance];
3924
NSDictionary * const expectedParams = @{

BranchSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "BranchSDK"
3-
s.version = "2.1.2"
3+
s.version = "2.2.0"
44
s.summary = "Create an HTTP URL for any piece of content in your app"
55
s.description = <<-DESC
66
- Want the highest possible conversions on your sharing feature?

BranchSDK.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2069,7 +2069,7 @@
20692069
"@executable_path/Frameworks",
20702070
"@loader_path/Frameworks",
20712071
);
2072-
MARKETING_VERSION = 2.1.2;
2072+
MARKETING_VERSION = 2.2.0;
20732073
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
20742074
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
20752075
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -2100,7 +2100,7 @@
21002100
"@executable_path/Frameworks",
21012101
"@loader_path/Frameworks",
21022102
);
2103-
MARKETING_VERSION = 2.1.2;
2103+
MARKETING_VERSION = 2.2.0;
21042104
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
21052105
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
21062106
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -2302,7 +2302,7 @@
23022302
"@loader_path/Frameworks",
23032303
);
23042304
MACH_O_TYPE = staticlib;
2305-
MARKETING_VERSION = 2.1.2;
2305+
MARKETING_VERSION = 2.2.0;
23062306
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
23072307
PRODUCT_MODULE_NAME = BranchSDK;
23082308
PRODUCT_NAME = BranchSDK;
@@ -2337,7 +2337,7 @@
23372337
"@loader_path/Frameworks",
23382338
);
23392339
MACH_O_TYPE = staticlib;
2340-
MARKETING_VERSION = 2.1.2;
2340+
MARKETING_VERSION = 2.2.0;
23412341
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
23422342
PRODUCT_MODULE_NAME = BranchSDK;
23432343
PRODUCT_NAME = BranchSDK;
@@ -2369,7 +2369,7 @@
23692369
"@executable_path/Frameworks",
23702370
"@loader_path/Frameworks",
23712371
);
2372-
MARKETING_VERSION = 2.1.2;
2372+
MARKETING_VERSION = 2.2.0;
23732373
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
23742374
PRODUCT_NAME = BranchSDK;
23752375
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -2399,7 +2399,7 @@
23992399
"@executable_path/Frameworks",
24002400
"@loader_path/Frameworks",
24012401
);
2402-
MARKETING_VERSION = 2.1.2;
2402+
MARKETING_VERSION = 2.2.0;
24032403
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
24042404
PRODUCT_NAME = BranchSDK;
24052405
PROVISIONING_PROFILE_SPECIFIER = "";

BranchSDK/BNCConfig.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
NSString * const BNC_API_BASE_URL = @"https://api2.branch.io";
1212
NSString * const BNC_API_VERSION = @"v1";
1313
NSString * const BNC_LINK_URL = @"https://bnc.lt";
14-
NSString * const BNC_SDK_VERSION = @"2.1.2";
14+
NSString * const BNC_SDK_VERSION = @"2.2.0";
1515
NSString * const BNC_CDN_URL = @"https://cdn.branch.io";

ChangeLog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Branch iOS SDK Change Log
22

3+
V.2.2.0
4+
5+
Branch iOS SDK 2.2.0 adds the ability to include developer ID in installs and a new method to change the Branch API base URL.
6+
7+
- SDK-1944 - Add Developer ID to v1/install
8+
- SDK-1755 - Remove old Apple Search Ads APIs
9+
- SDK-1934 - Expose a public method to change the Branch API base url
10+
311
V.2.1.2
12+
413
Branch iOS SDK 2.1.2 adds additional support for Meta AEM links. It also includes some bug fixes and debugging improvements.
514

615
- SDK-1796, SDK-1797 and SDK-1906 additional support for Meta AEM links

scripts/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Options:
3030
USAGE
3131
}
3232

33-
version=2.1.2
33+
version=2.2.0
3434
prev_version="$version"
3535

3636
if (( $# == 0 )); then

0 commit comments

Comments
 (0)