Skip to content

Commit 98278fe

Browse files
committed
Revert version numbers to 3.12.1 to match 4.0.0-alpha.0 base
The merge with master brought version 3.13.3 which should not be part of this PR. Reverting all version references back to 3.12.1 to maintain consistency with the 4.0.0-alpha.0 branch. Files reverted: - BranchSDK.podspec - Sources/BranchSDK/BNCConfig.m - scripts/version.sh - ChangeLog.md - BranchSDK.xcodeproj/project.pbxproj
1 parent fcbf768 commit 98278fe

File tree

5 files changed

+9
-31
lines changed

5 files changed

+9
-31
lines changed

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 = "3.13.3"
3+
s.version = "3.12.1"
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
@@ -1981,7 +1981,7 @@
19811981
"@executable_path/Frameworks",
19821982
"@loader_path/Frameworks",
19831983
);
1984-
MARKETING_VERSION = 3.13.3;
1984+
MARKETING_VERSION = 3.12.1;
19851985
OTHER_LDFLAGS = (
19861986
"-weak_framework",
19871987
LinkPresentation,
@@ -2021,7 +2021,7 @@
20212021
"@executable_path/Frameworks",
20222022
"@loader_path/Frameworks",
20232023
);
2024-
MARKETING_VERSION = 3.13.3;
2024+
MARKETING_VERSION = 3.12.1;
20252025
OTHER_LDFLAGS = (
20262026
"-weak_framework",
20272027
LinkPresentation,
@@ -2081,7 +2081,7 @@
20812081
"@loader_path/Frameworks",
20822082
);
20832083
MACH_O_TYPE = staticlib;
2084-
MARKETING_VERSION = 3.13.3;
2084+
MARKETING_VERSION = 3.12.1;
20852085
OTHER_LDFLAGS = (
20862086
"-weak_framework",
20872087
LinkPresentation,
@@ -2123,7 +2123,7 @@
21232123
"@loader_path/Frameworks",
21242124
);
21252125
MACH_O_TYPE = staticlib;
2126-
MARKETING_VERSION = 3.13.3;
2126+
MARKETING_VERSION = 3.12.1;
21272127
OTHER_LDFLAGS = (
21282128
"-weak_framework",
21292129
LinkPresentation,
@@ -2163,7 +2163,7 @@
21632163
"@executable_path/Frameworks",
21642164
"@loader_path/Frameworks",
21652165
);
2166-
MARKETING_VERSION = 3.13.3;
2166+
MARKETING_VERSION = 3.12.1;
21672167
OTHER_LDFLAGS = (
21682168
"-weak_framework",
21692169
LinkPresentation,
@@ -2203,7 +2203,7 @@
22032203
"@executable_path/Frameworks",
22042204
"@loader_path/Frameworks",
22052205
);
2206-
MARKETING_VERSION = 3.13.3;
2206+
MARKETING_VERSION = 3.12.1;
22072207
OTHER_LDFLAGS = (
22082208
"-weak_framework",
22092209
LinkPresentation,

ChangeLog.md

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

3-
v.3.13.3
4-
— Fixed Bug - Missing Apple Attribution Token in Install Requests (impacted versions: 3.13.0 - 3.13.2).
5-
6-
v.3.13.2
7-
— Suppressed deprecated StoreKit API warnings. These APIs will be replaced with StoreKit 2 APIs in upcoming releases.
8-
— Added defensive fix to improve reliability of NSInvocation calls.
9-
— Added some additional debug logging API.
10-
11-
v.3.13.1
12-
- SDK Request Queue will not cache request objects failed with Https Response Codes - 1xx, 2xx, 3xx and 4xx.
13-
- Fixed bug - SDK will send odm_info if Consumer Protection Attribution Level is not set or is set to Full.
14-
15-
v.3.13.0
16-
- Added API 'setAnonID' to set custom Meta Anon ID for the current user.
17-
- Added API 'setSDKWaitTimeForThirdPartyAPIs' to set time for which SDK will wait for fetching data from third-party APIs, such as ODM info and Apple Attribution Token.
18-
- Removed apple_receipt and apple_testflight params from the Server Requests.
19-
20-
v.3.12.2
21-
- Fixed bug where error object was not being forwarded when receiving error from service.
22-
- Fixed bug with Advanced Compliance and Integration Validator.
23-
- Added param 'operational_metrics' in v1/install request.
24-
253
v.3.12.1
264
- Fixed bug - SDK crashes when Meta AEM query param `al_applink_data` is empty.
275

Sources/BranchSDK/BNCConfig.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include "BNCConfig.h"
1010

11-
NSString * const BNC_SDK_VERSION = @"3.13.3";
11+
NSString * const BNC_SDK_VERSION = @"3.12.1";
1212
NSString * const BNC_LINK_URL = @"https://bnc.lt";
1313
NSString * const BNC_CDN_URL = @"https://cdn.branch.io";
1414

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=3.13.3
33+
version=3.12.1
3434
prev_version="$version"
3535

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

0 commit comments

Comments
 (0)