From e1b0b7a228d6337f83f92e15eecf391540e5da4d Mon Sep 17 00:00:00 2001 From: Jeriel Ng Date: Tue, 28 Nov 2023 11:46:05 -0500 Subject: [PATCH] Version 2.2.0 --- CHANGELOG.md | 7 +++++++ .../xcshareddata/swiftpm/Package.resolved | 4 ++-- Package.swift | 2 +- Sources/SegmentBraze/Version.swift | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0149bcd..3d1f855 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 2.2.0 + +#### Added +- Updates the Braze Swift SDK bindings to include releases from the 7.X.X SemVer denomination. + - This allows compatibility with any version of the Braze SDK from `6.6.0` up to, but not including, `8.0.0`. + - This is not a breaking change unless you choose to update to `7.0.0` and up. For further details, refer to the `7.0.0` [release notes](https://github.com/braze-inc/braze-swift-sdk/blob/main/CHANGELOG.md#700). + ## 2.1.0 #### Added diff --git a/Example/BasicExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Example/BasicExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 26b8aa8..963e595 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" : "80d27557b74de80d4e62a285e63b72138fad8be6", - "version" : "6.6.0" + "revision" : "d3963492b9ae0dd2c28a41201707b1723a7d7c94", + "version" : "7.3.0" } }, { diff --git a/Package.swift b/Package.swift index 3e81422..861950b 100644 --- a/Package.swift +++ b/Package.swift @@ -25,7 +25,7 @@ let package = Package( ), .package( url:"https://github.com/braze-inc/braze-swift-sdk", - from: "6.6.0" + "6.6.0"..<"8.0.0" ), ], targets: [ diff --git a/Sources/SegmentBraze/Version.swift b/Sources/SegmentBraze/Version.swift index bea1ee7..b182993 100644 --- a/Sources/SegmentBraze/Version.swift +++ b/Sources/SegmentBraze/Version.swift @@ -1,3 +1,3 @@ extension BrazeDestination { - public static let _version = "2.1.0" + public static let _version = "2.2.0" }