From 36481467bc4f333a0a2e31bcdbf981ad8e526dd0 Mon Sep 17 00:00:00 2001 From: Jeriel Ng Date: Wed, 30 Oct 2024 12:46:00 -0400 Subject: [PATCH] Version 11.2.0 --- BrazeKit.podspec | 6 +-- BrazeKitCompat.podspec | 8 ++-- BrazeLocation.podspec | 8 ++-- BrazeNotificationService.podspec | 6 +-- BrazePushStory.podspec | 6 +-- BrazeUI.podspec | 6 +-- BrazeUICompat.podspec | 6 +-- CHANGELOG.md | 13 ++++++ .../project.pbxproj | 6 +-- .../ObjC/Sources/PushNotifications/Info.plist | 30 -------------- .../PushNotifications.entitlements | 12 ------ Examples/ObjC/manual-integration-setup.sh | 2 +- .../project.pbxproj | 6 +-- .../AppDelegate.swift | 41 +++++++++++++++---- .../ContentCardUI-Customization/Readme.swift | 10 +++++ .../AppDelegate.swift | 2 +- .../Sources/PushNotifications/Info.plist | 30 -------------- .../PushNotifications.entitlements | 12 ------ Examples/Swift/manual-integration-setup.sh | 2 +- Package.swift | 16 ++++---- README.md | 2 +- .../Cells/ContentCardUICell.swift | 3 ++ .../ContentCardUIViewController.swift | 2 +- .../Views/Misc/ModalTextView.swift | 25 ++++++++++- 24 files changed, 125 insertions(+), 135 deletions(-) delete mode 100644 Examples/ObjC/Sources/PushNotifications/Info.plist delete mode 100644 Examples/ObjC/Sources/PushNotifications/PushNotifications.entitlements delete mode 100644 Examples/Swift/Sources/PushNotifications/Info.plist delete mode 100644 Examples/Swift/Sources/PushNotifications/PushNotifications.entitlements diff --git a/BrazeKit.podspec b/BrazeKit.podspec index 8b7055b714..9d6a08b0f6 100644 --- a/BrazeKit.podspec +++ b/BrazeKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'BrazeKit' - s.version = '11.1.1' + s.version = '11.2.0' s.summary = 'Braze Main SDK library providing support for analytics and push notifications.' s.homepage = 'https://braze.com' @@ -9,8 +9,8 @@ Pod::Spec.new do |s| s.authors = 'Braze, Inc.' s.source = { - :http => 'https://github.com/braze-inc/braze-swift-sdk/releases/download/11.1.1/BrazeKit.zip', - :sha256 => 'cf78c55e0a265c228af56bc6b4c528c60a78e3d3819e6fffc017703230a02c15' + :http => 'https://github.com/braze-inc/braze-swift-sdk/releases/download/11.2.0/BrazeKit.zip', + :sha256 => 'a0158a907dadd39b1fcb7344d9f0531e58ef72433fd7f4c04c7412291d790870' } s.swift_version = '5.0' diff --git a/BrazeKitCompat.podspec b/BrazeKitCompat.podspec index 48cfc602c5..2324307cc7 100644 --- a/BrazeKitCompat.podspec +++ b/BrazeKitCompat.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'BrazeKitCompat' - s.version = '11.1.1' + s.version = '11.2.0' s.summary = 'Compatibility library for users migrating from AppboyKit.' s.homepage = 'https://braze.com' @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.license = { :type => 'Commercial' } s.authors = 'Braze, Inc.' - s.source = { :git => 'https://github.com/braze-inc/braze-swift-sdk.git', :tag => '11.1.1' } + s.source = { :git => 'https://github.com/braze-inc/braze-swift-sdk.git', :tag => '11.2.0' } s.swift_version = '5.0' s.ios.deployment_target = '12.0' @@ -18,8 +18,8 @@ Pod::Spec.new do |s| s.public_header_files = 'Sources/BrazeKitCompat/include/*.h' s.static_framework = true - s.dependency 'BrazeKit', '11.1.1' - s.dependency 'BrazeLocation', '11.1.1' + s.dependency 'BrazeKit', '11.2.0' + s.dependency 'BrazeLocation', '11.2.0' s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } end diff --git a/BrazeLocation.podspec b/BrazeLocation.podspec index 596673f169..fd0de33cd4 100644 --- a/BrazeLocation.podspec +++ b/BrazeLocation.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'BrazeLocation' - s.version = '11.1.1' + s.version = '11.2.0' s.summary = 'Braze location library providing support for location analytics and geofence monitoring.' s.homepage = 'https://braze.com' @@ -9,8 +9,8 @@ Pod::Spec.new do |s| s.authors = 'Braze, Inc.' s.source = { - :http => 'https://github.com/braze-inc/braze-swift-sdk/releases/download/11.1.1/BrazeLocation.zip', - :sha256 => '62f9d50b4071f0228eb9928b06b0b851be567b68a5071ae98196508cc3469b3a' + :http => 'https://github.com/braze-inc/braze-swift-sdk/releases/download/11.2.0/BrazeLocation.zip', + :sha256 => 'c7f7c9dfc721efd2df26e2566e4a1687750b251fea18432d38d51577b8afd76b' } s.swift_version = '5.0' @@ -21,7 +21,7 @@ Pod::Spec.new do |s| s.vendored_framework = 'BrazeLocation.xcframework' s.resource_bundles = { 'BrazeLocation' => ['Sources/BrazeLocationResources/Resources/**/*'] } - s.dependency 'BrazeKit', '11.1.1' + s.dependency 'BrazeKit', '11.2.0' s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } end diff --git a/BrazeNotificationService.podspec b/BrazeNotificationService.podspec index 9b18abdefa..2be8c3a768 100644 --- a/BrazeNotificationService.podspec +++ b/BrazeNotificationService.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'BrazeNotificationService' - s.version = '11.1.1' + s.version = '11.2.0' s.summary = 'Braze notification service extension library providing support for Rich Push notifications.' s.homepage = 'https://braze.com' @@ -9,8 +9,8 @@ Pod::Spec.new do |s| s.authors = 'Braze, Inc.' s.source = { - :http => 'https://github.com/braze-inc/braze-swift-sdk/releases/download/11.1.1/BrazeNotificationService.zip', - :sha256 => 'fb96adb873bf99ef745350e94a409b81a2699b6530eb9035a3e71b8f5d29efb4' + :http => 'https://github.com/braze-inc/braze-swift-sdk/releases/download/11.2.0/BrazeNotificationService.zip', + :sha256 => '3b3c3de36795e43b5e87b4465da929226149ca1885e0a358b753f027af99af22' } s.swift_version = '5.0' diff --git a/BrazePushStory.podspec b/BrazePushStory.podspec index b13d4fe562..3f2ee3e130 100644 --- a/BrazePushStory.podspec +++ b/BrazePushStory.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'BrazePushStory' - s.version = '11.1.1' + s.version = '11.2.0' s.summary = 'Braze notification content extension library providing support for Push Stories.' s.homepage = 'https://braze.com' @@ -9,8 +9,8 @@ Pod::Spec.new do |s| s.authors = 'Braze, Inc.' s.source = { - :http => 'https://github.com/braze-inc/braze-swift-sdk/releases/download/11.1.1/BrazePushStory.zip', - :sha256 => 'be1e9eae09dc71093ceea6fa9fe03367e3e98e16663b6f2aa0b9d3a4fe5ddf82' + :http => 'https://github.com/braze-inc/braze-swift-sdk/releases/download/11.2.0/BrazePushStory.zip', + :sha256 => '8a06ac8bff6e8dd9a715a4fe65bb04dce9d44be38ad7cab02c8c2ed34134948e' } s.swift_version = '5.0' diff --git a/BrazeUI.podspec b/BrazeUI.podspec index e3e583dea1..21197307ba 100644 --- a/BrazeUI.podspec +++ b/BrazeUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'BrazeUI' - s.version = '11.1.1' + s.version = '11.2.0' s.summary = 'Braze-provided user interface library for In-App Messages and Content Cards.' s.homepage = 'https://braze.com' @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.license = { :type => 'Commercial' } s.authors = 'Braze, Inc.' - s.source = { :git => 'https://github.com/braze-inc/braze-swift-sdk.git', :tag => '11.1.1' } + s.source = { :git => 'https://github.com/braze-inc/braze-swift-sdk.git', :tag => '11.2.0' } s.swift_version = '5.0' s.ios.deployment_target = '12.0' @@ -18,7 +18,7 @@ Pod::Spec.new do |s| s.resource_bundles = { 'BrazeUI' => ['Sources/BrazeUI/Resources/**/*'] } s.static_framework = true - s.dependency 'BrazeKit', '11.1.1' + s.dependency 'BrazeKit', '11.2.0' s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } end diff --git a/BrazeUICompat.podspec b/BrazeUICompat.podspec index aed9344488..9dfa0f8a59 100644 --- a/BrazeUICompat.podspec +++ b/BrazeUICompat.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'BrazeUICompat' - s.version = '11.1.1' + s.version = '11.2.0' s.summary = 'Compatibility UI library for users migrating from AppboyUI.' s.homepage = 'https://braze.com' @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.license = { :type => 'Commercial' } s.authors = 'Braze, Inc.' - s.source = { :git => 'https://github.com/braze-inc/braze-swift-sdk.git', :tag => '11.1.1' } + s.source = { :git => 'https://github.com/braze-inc/braze-swift-sdk.git', :tag => '11.2.0' } s.swift_version = '5.0' s.ios.deployment_target = '12.0' @@ -18,7 +18,7 @@ Pod::Spec.new do |s| s.resource_bundles = { 'BrazeUICompat' => 'Sources/BrazeUICompat/*/Resources/**/*.*' } s.static_framework = true - s.dependency 'BrazeKitCompat', '11.1.1' + s.dependency 'BrazeKitCompat', '11.2.0' s.dependency 'SDWebImage', '>= 5.19.7', '< 6' s.user_target_xcconfig = { 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES' } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cebc08972..e31427824f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 11.2.0 + +##### Fixed +- Fixes the Objective-C `Braze.delegate` declaration to be `weak` like the Swift variant. + +##### Added +- `Braze.prepareForDelayedInitialization` now takes an optional parameter `analyticsBehavior: PushEnqueueBehavior`. + - Braze uses this value to determine whether any Braze push payloads received before initialization should be processed once initialization is complete. + - `PushEnqueueBehavior.queue` will enqueue received push payloads to be processed upon initialization. This option is selected by default. + - `PushEnqueueBehavior.drop` will drop received push payloads, ignoring them. +- Adds configuration properties to customize the `lineSpacing`, `maxLineHeight`, `minLineHeight`, and `lineHeightMultiple` for the header and message texts in full and modal in-app messages. +- Updates `BrazeContentCardUI.ViewController.Attributes.defaults` to be a `var` to allow directly editing the property for convenience. + ## 11.1.1 ##### Fixed diff --git a/Examples/ObjC/Examples-SwiftPM.xcodeproj/project.pbxproj b/Examples/ObjC/Examples-SwiftPM.xcodeproj/project.pbxproj index 4c065d21f4..b9fa561a16 100644 --- a/Examples/ObjC/Examples-SwiftPM.xcodeproj/project.pbxproj +++ b/Examples/ObjC/Examples-SwiftPM.xcodeproj/project.pbxproj @@ -963,7 +963,7 @@ mainGroup = D8CC2266D736859D7DD9A8FF; packageReferences = ( 9928D5150C45879A982BA1C6 /* XCRemoteSwiftPackageReference "SDWebImage" */, - B0CAEC5E933F542260FE1612 /* XCLocalSwiftPackageReference "/Users/daniel.hok/Desktop/swift-sdk/.build/braze/release/braze-swift-sdk" */, + 90D8318C2DB3CED6610DD38C /* XCLocalSwiftPackageReference "/Users/jerielng/swift-sdk/.build/braze/release/braze-swift-sdk" */, ); projectDirPath = ""; projectRoot = ""; @@ -2123,9 +2123,9 @@ /* End XCRemoteSwiftPackageReference section */ /* Begin XCLocalSwiftPackageReference section */ - B0CAEC5E933F542260FE1612 /* XCLocalSwiftPackageReference "/Users/daniel.hok/Desktop/swift-sdk/.build/braze/release/braze-swift-sdk" */ = { + 90D8318C2DB3CED6610DD38C /* XCLocalSwiftPackageReference "/Users/jerielng/swift-sdk/.build/braze/release/braze-swift-sdk" */ = { isa = XCLocalSwiftPackageReference; - relativePath = "/Users/daniel.hok/Desktop/swift-sdk/.build/braze/release/braze-swift-sdk"; + relativePath = "/Users/jerielng/swift-sdk/.build/braze/release/braze-swift-sdk"; }; /* End XCLocalSwiftPackageReference section */ diff --git a/Examples/ObjC/Sources/PushNotifications/Info.plist b/Examples/ObjC/Sources/PushNotifications/Info.plist deleted file mode 100644 index d7f8ec8ca2..0000000000 --- a/Examples/ObjC/Sources/PushNotifications/Info.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - PushNotifications - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - UIBackgroundModes - - remote-notification - - UILaunchStoryboardName - LaunchScreen - - diff --git a/Examples/ObjC/Sources/PushNotifications/PushNotifications.entitlements b/Examples/ObjC/Sources/PushNotifications/PushNotifications.entitlements deleted file mode 100644 index 9cad402b51..0000000000 --- a/Examples/ObjC/Sources/PushNotifications/PushNotifications.entitlements +++ /dev/null @@ -1,12 +0,0 @@ - - - - - aps-environment - development - com.apple.security.application-groups - - group.com.braze.PushNotifications.PushStories - - - diff --git a/Examples/ObjC/manual-integration-setup.sh b/Examples/ObjC/manual-integration-setup.sh index 728af47066..767aa4a848 100755 --- a/Examples/ObjC/manual-integration-setup.sh +++ b/Examples/ObjC/manual-integration-setup.sh @@ -20,7 +20,7 @@ if [ ! -f "manual-integration-setup.sh" ]; then fi # Constants -url="https://github.com/braze-inc/braze-swift-sdk/releases/download/11.1.1/braze-swift-sdk-prebuilt.zip" +url="https://github.com/braze-inc/braze-swift-sdk/releases/download/11.2.0/braze-swift-sdk-prebuilt.zip" echo "→" "Cleaning up" rm -rf braze-swift-sdk-prebuilt diff --git a/Examples/Swift/Examples-SwiftPM.xcodeproj/project.pbxproj b/Examples/Swift/Examples-SwiftPM.xcodeproj/project.pbxproj index cc48652a43..1832338e7d 100644 --- a/Examples/Swift/Examples-SwiftPM.xcodeproj/project.pbxproj +++ b/Examples/Swift/Examples-SwiftPM.xcodeproj/project.pbxproj @@ -957,7 +957,7 @@ mainGroup = D8CC2266D736859D7DD9A8FF; packageReferences = ( 9928D5150C45879A982BA1C6 /* XCRemoteSwiftPackageReference "SDWebImage" */, - B0CAEC5E933F542260FE1612 /* XCLocalSwiftPackageReference "/Users/daniel.hok/Desktop/swift-sdk/.build/braze/release/braze-swift-sdk" */, + 90D8318C2DB3CED6610DD38C /* XCLocalSwiftPackageReference "/Users/jerielng/swift-sdk/.build/braze/release/braze-swift-sdk" */, ); projectDirPath = ""; projectRoot = ""; @@ -2115,9 +2115,9 @@ /* End XCRemoteSwiftPackageReference section */ /* Begin XCLocalSwiftPackageReference section */ - B0CAEC5E933F542260FE1612 /* XCLocalSwiftPackageReference "/Users/daniel.hok/Desktop/swift-sdk/.build/braze/release/braze-swift-sdk" */ = { + 90D8318C2DB3CED6610DD38C /* XCLocalSwiftPackageReference "/Users/jerielng/swift-sdk/.build/braze/release/braze-swift-sdk" */ = { isa = XCLocalSwiftPackageReference; - relativePath = "/Users/daniel.hok/Desktop/swift-sdk/.build/braze/release/braze-swift-sdk"; + relativePath = "/Users/jerielng/swift-sdk/.build/braze/release/braze-swift-sdk"; }; /* End XCLocalSwiftPackageReference section */ diff --git a/Examples/Swift/Sources/ContentCardUI-Customization/AppDelegate.swift b/Examples/Swift/Sources/ContentCardUI-Customization/AppDelegate.swift index b607603376..de4bd30402 100644 --- a/Examples/Swift/Sources/ContentCardUI-Customization/AppDelegate.swift +++ b/Examples/Swift/Sources/ContentCardUI-Customization/AppDelegate.swift @@ -28,14 +28,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate { // MARK: - Customizations -#warning( - """ - For demonstration purposes, this example application uses an alternate Content Card view controller initializer. +#warning(""" +For demonstration purposes, this example application uses an alternate Content Card view controller initializer. - In your implementation, you are expected to use the standard `init(braze:attributes:)` initializer to automatically link the UI to your braze instance. +In your implementation, you are expected to use the standard `init(braze:attributes:)` initializer to automatically link the UI to your braze instance. - See https://braze-inc.github.io/braze-swift-sdk/documentation/brazeui/brazecontentcardui/viewcontroller/init(braze:attributes:) - """) +See https://braze-inc.github.io/braze-swift-sdk/documentation/brazeui/brazecontentcardui/viewcontroller/init(braze:attributes:) +""") extension AppDelegate { @@ -69,7 +68,35 @@ extension AppDelegate { initialCards: cards, attributes: attributes ) - viewController.title = "Attributes" + viewController.title = "Modifying Attributes" + navigationController.pushViewController(viewController, animated: true) + } + + static func defaultAttributesCustomization() { + // Customize the cell attribute defaults directly to customize the cell + BrazeContentCardUI.ViewController.Attributes.defaults.cellAttributes.cornerRadius = 40 + BrazeContentCardUI.ViewController.Attributes.defaults.cellAttributes.classicImageCornerRadius = + 10 + if #available(iOS 13.0, *) { + BrazeContentCardUI.ViewController.Attributes.defaults.cellAttributes.cornerCurve = .continuous + } + + BrazeContentCardUI.ViewController.Attributes.defaults.cellAttributes.titleFont = UIFont( + name: "AvenirNext-Heavy", size: 18)! + BrazeContentCardUI.ViewController.Attributes.defaults.cellAttributes.descriptionFont = UIFont( + name: "BradleyHandITCTT-Bold", size: 16)! + BrazeContentCardUI.ViewController.Attributes.defaults.cellAttributes.domainFont = UIFont( + name: "TimesNewRomanPSMT", size: 12)! + if #available(iOS 13.0, *) { + BrazeContentCardUI.ViewController.Attributes.defaults.cellAttributes.domainColor = .green + } else { + BrazeContentCardUI.ViewController.Attributes.defaults.cellAttributes.domainColor = .gray + } + BrazeContentCardUI.ViewController.Attributes.defaults.cellAttributes.highlightColor = + .systemGreen.withAlphaComponent(0.8) + + let viewController = BrazeContentCardUI.ViewController(initialCards: cards) + viewController.title = "Modifying default Attributes" navigationController.pushViewController(viewController, animated: true) } diff --git a/Examples/Swift/Sources/ContentCardUI-Customization/Readme.swift b/Examples/Swift/Sources/ContentCardUI-Customization/Readme.swift index d1fafeff17..377bee69f3 100644 --- a/Examples/Swift/Sources/ContentCardUI-Customization/Readme.swift +++ b/Examples/Swift/Sources/ContentCardUI-Customization/Readme.swift @@ -20,6 +20,11 @@ let actions: [(String, String, @MainActor (ReadmeViewController) -> Void)] = [ "Corner radius, fonts, text color and highlight color.", attributesCustomization ), + ( + "Modify default attributes", + "Corner radius, fonts, text color and highlight color.", + defaultAttributesCustomization + ), ( "Tint color", "Pin image, unviewed indicator and domain label inherit the current tint color.", @@ -131,6 +136,11 @@ func attributesCustomization(_ viewController: ReadmeViewController) { AppDelegate.attributesCustomization() } +@MainActor +func defaultAttributesCustomization(_ viewController: ReadmeViewController) { + AppDelegate.defaultAttributesCustomization() +} + @MainActor func tintColorCustomization(_ viewController: ReadmeViewController) { AppDelegate.tintColorCustomization() diff --git a/Examples/Swift/Sources/PushNotifications-DelayedInitialization/AppDelegate.swift b/Examples/Swift/Sources/PushNotifications-DelayedInitialization/AppDelegate.swift index fff9633b36..ed813fa879 100644 --- a/Examples/Swift/Sources/PushNotifications-DelayedInitialization/AppDelegate.swift +++ b/Examples/Swift/Sources/PushNotifications-DelayedInitialization/AppDelegate.swift @@ -14,7 +14,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { // Prepare Braze for delayed initialization // - This ensures that push notifications received before the SDK is initialized are processed // during initialization. - Braze.prepareForDelayedInitialization() + Braze.prepareForDelayedInitialization(pushAutomation: true) window?.makeKeyAndVisible() return true diff --git a/Examples/Swift/Sources/PushNotifications/Info.plist b/Examples/Swift/Sources/PushNotifications/Info.plist deleted file mode 100644 index d7f8ec8ca2..0000000000 --- a/Examples/Swift/Sources/PushNotifications/Info.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - PushNotifications - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleVersion - 1 - UIBackgroundModes - - remote-notification - - UILaunchStoryboardName - LaunchScreen - - diff --git a/Examples/Swift/Sources/PushNotifications/PushNotifications.entitlements b/Examples/Swift/Sources/PushNotifications/PushNotifications.entitlements deleted file mode 100644 index 9cad402b51..0000000000 --- a/Examples/Swift/Sources/PushNotifications/PushNotifications.entitlements +++ /dev/null @@ -1,12 +0,0 @@ - - - - - aps-environment - development - com.apple.security.application-groups - - group.com.braze.PushNotifications.PushStories - - - diff --git a/Examples/Swift/manual-integration-setup.sh b/Examples/Swift/manual-integration-setup.sh index 728af47066..767aa4a848 100755 --- a/Examples/Swift/manual-integration-setup.sh +++ b/Examples/Swift/manual-integration-setup.sh @@ -20,7 +20,7 @@ if [ ! -f "manual-integration-setup.sh" ]; then fi # Constants -url="https://github.com/braze-inc/braze-swift-sdk/releases/download/11.1.1/braze-swift-sdk-prebuilt.zip" +url="https://github.com/braze-inc/braze-swift-sdk/releases/download/11.2.0/braze-swift-sdk-prebuilt.zip" echo "→" "Cleaning up" rm -rf braze-swift-sdk-prebuilt diff --git a/Package.swift b/Package.swift index c4d87d3424..386d45d4a7 100644 --- a/Package.swift +++ b/Package.swift @@ -49,8 +49,8 @@ let package = Package( targets: [ .binaryTarget( name: "BrazeKit", - url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/11.1.1/BrazeKit.zip", - checksum: "cf78c55e0a265c228af56bc6b4c528c60a78e3d3819e6fffc017703230a02c15" + url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/11.2.0/BrazeKit.zip", + checksum: "a0158a907dadd39b1fcb7344d9f0531e58ef72433fd7f4c04c7412291d790870" ), .target( name: "BrazeKitResources", @@ -67,8 +67,8 @@ let package = Package( ), .binaryTarget( name: "BrazeLocation", - url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/11.1.1/BrazeLocation.zip", - checksum: "62f9d50b4071f0228eb9928b06b0b851be567b68a5071ae98196508cc3469b3a" + url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/11.2.0/BrazeLocation.zip", + checksum: "c7f7c9dfc721efd2df26e2566e4a1687750b251fea18432d38d51577b8afd76b" ), .target( name: "BrazeLocationResources", @@ -78,13 +78,13 @@ let package = Package( ), .binaryTarget( name: "BrazeNotificationService", - url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/11.1.1/BrazeNotificationService.zip", - checksum: "fb96adb873bf99ef745350e94a409b81a2699b6530eb9035a3e71b8f5d29efb4" + url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/11.2.0/BrazeNotificationService.zip", + checksum: "3b3c3de36795e43b5e87b4465da929226149ca1885e0a358b753f027af99af22" ), .binaryTarget( name: "BrazePushStory", - url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/11.1.1/BrazePushStory.zip", - checksum: "be1e9eae09dc71093ceea6fa9fe03367e3e98e16663b6f2aa0b9d3a4fe5ddf82" + url: "https://github.com/braze-inc/braze-swift-sdk/releases/download/11.2.0/BrazePushStory.zip", + checksum: "8a06ac8bff6e8dd9a715a4fe65bb04dce9d44be38ad7cab02c8c2ed34134948e" ), .target( name: "BrazePushStoryResources", diff --git a/README.md b/README.md index 71537033f7..3caddaf9d6 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

- Version: 11.1.1 + Version: 11.2.0