Skip to content

Commit

Permalink
Merge pull request #1352 from BranchMetrics/SDK-2240-prep-iOS-3.2.0-r…
Browse files Browse the repository at this point in the history
…elease

Prep iOS release 3.2.0
  • Loading branch information
echo-branch committed Feb 15, 2024
2 parents 346d209 + c7f50be commit cde01b3
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion BranchSDK.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "BranchSDK"
s.version = "3.1.1"
s.version = "3.2.0"
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
12 changes: 6 additions & 6 deletions BranchSDK.xcodeproj/project.pbxproj
Expand Up @@ -1974,7 +1974,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.1.1;
MARKETING_VERSION = 3.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down Expand Up @@ -2009,7 +2009,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.1.1;
MARKETING_VERSION = 3.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down Expand Up @@ -2215,7 +2215,7 @@
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 3.1.1;
MARKETING_VERSION = 3.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down Expand Up @@ -2254,7 +2254,7 @@
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 3.1.1;
MARKETING_VERSION = 3.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down Expand Up @@ -2291,7 +2291,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.1.1;
MARKETING_VERSION = 3.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down Expand Up @@ -2326,7 +2326,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.1.1;
MARKETING_VERSION = 3.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down
8 changes: 7 additions & 1 deletion ChangeLog.md
@@ -1,7 +1,13 @@
Branch iOS SDK Change Log

v.3.1.1
v.3.2.0
- Add support for setting DMA compliance parameters.
- Update logging to allow a custom callback so clients may reroute Branch Logs to their logging infrastructure.
- Update logging to use `os_log` private by default.
- New custom server URL API. When set the SDK will always use this endpoint, the Privacy Manifest should be edited to match.
- Update cocoapods, frameworks and tests to use SPM layout.
- Fix crash when using pre-built xcframework on iOS 12
- Improve Swift compatibility by removing API variations that differ only by an NSError.

v.3.1.0
- Fix tuist SPM integration when using external by switching to a more typical SPM layout.
Expand Down
2 changes: 1 addition & 1 deletion Sources/BranchSDK/BNCConfig.m
Expand Up @@ -8,7 +8,7 @@

#include "BNCConfig.h"

NSString * const BNC_SDK_VERSION = @"3.1.1";
NSString * const BNC_SDK_VERSION = @"3.2.0";
NSString * const BNC_LINK_URL = @"https://bnc.lt";
NSString * const BNC_CDN_URL = @"https://cdn.branch.io";

Expand Down
2 changes: 1 addition & 1 deletion scripts/version.sh
Expand Up @@ -30,7 +30,7 @@ Options:
USAGE
}

version=3.1.1
version=3.2.0
prev_version="$version"

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

0 comments on commit cde01b3

Please sign in to comment.