Skip to content

Commit

Permalink
Version 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lowip committed Sep 3, 2024
1 parent 83439e9 commit 0f1fb36
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down
2 changes: 1 addition & 1 deletion Sources/SegmentBraze/BrazeDestination.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Sources/SegmentBraze/Version.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
extension BrazeDestination {
public static let _version = "3.0.0"
public static let _version = "4.0.0"
}

0 comments on commit 0f1fb36

Please sign in to comment.