Skip to content

Commit 03c3ab2

Browse files
authored
fix: Bump min Braze SDK to 11.2 (#102)
Braze informed us that versions 11.0 and 11.1 have a critical bug and requested that we raise our minimum dependency version to 11.2. Note that we were already pinned up to next major, so version 11.2 and above would be pulled in automatically when updating, so this is just an extra precaution.
1 parent f8deb1e commit 03c3ab2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ let package = Package(
2121
.upToNextMajor(from: "8.19.0")),
2222
.package(name: "braze-swift-sdk",
2323
url: "https://github.com/braze-inc/braze-swift-sdk",
24-
.upToNextMajor(from: "11.0.0")),
24+
.upToNextMajor(from: "11.2.0")),
2525
],
2626
targets: [
2727
.target(

mParticle-Appboy.podspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ Pod::Spec.new do |s|
1919
s.ios.source_files = 'Sources/**/*.{h,m,mm}'
2020
s.ios.resource_bundles = { 'mParticle-Appboy-Privacy' => ['Sources/mParticle-Appboy/PrivacyInfo.xcprivacy'] }
2121
s.ios.dependency 'mParticle-Apple-SDK', '~> 8.19'
22-
s.ios.dependency 'BrazeKit', '~> 11.0'
23-
s.ios.dependency 'BrazeKitCompat', '~> 11.0'
24-
s.ios.dependency 'BrazeUI', '~> 11.0'
22+
s.ios.dependency 'BrazeKit', '~> 11.2'
23+
s.ios.dependency 'BrazeKitCompat', '~> 11.2'
24+
s.ios.dependency 'BrazeUI', '~> 11.2'
2525

2626
s.tvos.deployment_target = "12.0"
2727
s.tvos.source_files = 'Sources/**/*.{h,m,mm}'
2828
s.tvos.resource_bundles = { 'mParticle-Appboy-Privacy' => ['Sources/mParticle-Appboy/PrivacyInfo.xcprivacy'] }
2929
s.tvos.dependency 'mParticle-Apple-SDK', '~> 8.19'
30-
s.tvos.dependency 'BrazeKit', '~> 11.0'
31-
s.tvos.dependency 'BrazeKitCompat', '~> 11.0'
30+
s.tvos.dependency 'BrazeKit', '~> 11.2'
31+
s.tvos.dependency 'BrazeKitCompat', '~> 11.2'
3232

3333

3434
end

0 commit comments

Comments
 (0)