Skip to content

Commit

Permalink
fix: Bump min Braze SDK to 11.2
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
einsteinx2 committed Nov 19, 2024
1 parent f8deb1e commit 4dff709
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let package = Package(
.upToNextMajor(from: "8.19.0")),
.package(name: "braze-swift-sdk",
url: "https://github.com/braze-inc/braze-swift-sdk",
.upToNextMajor(from: "11.0.0")),
.upToNextMajor(from: "11.2.0")),
],
targets: [
.target(
Expand Down
10 changes: 5 additions & 5 deletions mParticle-Appboy.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ Pod::Spec.new do |s|
s.ios.source_files = 'Sources/**/*.{h,m,mm}'
s.ios.resource_bundles = { 'mParticle-Appboy-Privacy' => ['Sources/mParticle-Appboy/PrivacyInfo.xcprivacy'] }
s.ios.dependency 'mParticle-Apple-SDK', '~> 8.19'
s.ios.dependency 'BrazeKit', '~> 11.0'
s.ios.dependency 'BrazeKitCompat', '~> 11.0'
s.ios.dependency 'BrazeUI', '~> 11.0'
s.ios.dependency 'BrazeKit', '~> 11.2'
s.ios.dependency 'BrazeKitCompat', '~> 11.2'
s.ios.dependency 'BrazeUI', '~> 11.2'

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


end

0 comments on commit 4dff709

Please sign in to comment.