diff --git a/CHANGELOG.md b/CHANGELOG.md index 016becf..da8af2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 4.0.0 + +#### Breaking +- Updates the Braze Swift SDK bindings to require releases from the `10.2.0+` SemVer denomination. + - This allows compatibility with any version of the Braze SDK from `10.2.0` up to, but not including, `11.0.0`. + - Refer to the changelog entry for [`10.0.0`](https://github.com/braze-inc/braze-swift-sdk/blob/main/CHANGELOG.md#1000) for more information on potential breaking changes. + ## 3.0.0 #### Breaking diff --git a/Example/BasicExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Example/BasicExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 320a59e..2c4de37 100644 --- a/Example/BasicExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Example/BasicExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -14,8 +14,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/braze-inc/braze-swift-sdk", "state" : { - "revision" : "feb064a680dfc029d814b63a110fb58f96f3444c", - "version" : "9.2.0" + "revision" : "d54bd0676c6dcc630793f1c4e3be53bb5b51b67e", + "version" : "10.2.0" } }, { diff --git a/Package.swift b/Package.swift index c60d4f7..abcee05 100644 --- a/Package.swift +++ b/Package.swift @@ -25,7 +25,7 @@ let package = Package( ), .package( url:"https://github.com/braze-inc/braze-swift-sdk", - "9.2.0"..<"10.0.0" + "10.2.0"..<"11.0.0" ), ], targets: [ diff --git a/Sources/SegmentBraze/BrazeDestination.swift b/Sources/SegmentBraze/BrazeDestination.swift index 3957831..85c8ceb 100644 --- a/Sources/SegmentBraze/BrazeDestination.swift +++ b/Sources/SegmentBraze/BrazeDestination.swift @@ -283,7 +283,7 @@ public class BrazeDestination: DestinationPlugin, VersionedPlugin { /// - Important: This method must be called as soon as possible in the application lifecycle, /// ideally in or before `application(_:didFinishLaunchingWithOptions:)`. public static func prepareForDelayedInitialization() { - Braze._prepareForDelayedInitialization() + Braze.prepareForDelayedInitialization() } // MARK: - Private Methods diff --git a/Sources/SegmentBraze/Version.swift b/Sources/SegmentBraze/Version.swift index 049ef63..b222206 100644 --- a/Sources/SegmentBraze/Version.swift +++ b/Sources/SegmentBraze/Version.swift @@ -1,3 +1,3 @@ extension BrazeDestination { - public static let _version = "3.0.0" + public static let _version = "4.0.0" }