diff --git a/Configurations/Afterpay-Shared.xcconfig b/Configurations/Afterpay-Shared.xcconfig index 79d60605..41081ce1 100644 --- a/Configurations/Afterpay-Shared.xcconfig +++ b/Configurations/Afterpay-Shared.xcconfig @@ -169,4 +169,4 @@ TARGETED_DEVICE_FAMILY = 1,2 // This setting defines the user-visible version of the project. The value corresponds to // the `CFBundleShortVersionString` key in your app's Info.plist. -MARKETING_VERSION = 5.7.0 +MARKETING_VERSION = 5.7.1 diff --git a/Sources/Afterpay/Model/Version.swift b/Sources/Afterpay/Model/Version.swift index 19f351b8..0691ef2d 100644 --- a/Sources/Afterpay/Model/Version.swift +++ b/Sources/Afterpay/Model/Version.swift @@ -9,6 +9,6 @@ import Foundation final class Version { - static let shortVersion = "5.7.0" + static let shortVersion = "5.7.1" static let sdkVersion = "\(shortVersion)-ios" } diff --git a/docs/src/integration.md b/docs/src/integration.md index 51134fea..2b6cedd9 100644 --- a/docs/src/integration.md +++ b/docs/src/integration.md @@ -33,7 +33,7 @@ This is the recommended integration method. ``` swift dependencies: [ - .package(url: "https://github.com/afterpay/sdk-ios.git", .upToNextMajor(from: "5.7.0")) + .package(url: "https://github.com/afterpay/sdk-ios.git", .upToNextMajor(from: "5.7.1")) ] ``` @@ -65,7 +65,7 @@ Add the Afterpay SDK as a [git submodule][git-submodule]{:target="_blank"} by na ``` sh git submodule add https://github.com/afterpay/sdk-ios.git Afterpay cd Afterpay -git checkout 5.7.0 +git checkout 5.7.1 ``` #### Project / Workspace Integration