diff --git a/Configurations/Afterpay-Shared.xcconfig b/Configurations/Afterpay-Shared.xcconfig index 208de8b8..79d60605 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.6.1 +MARKETING_VERSION = 5.7.0 diff --git a/Sources/Afterpay/Model/Version.swift b/Sources/Afterpay/Model/Version.swift index a3c05707..19f351b8 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.6.1" + static let shortVersion = "5.7.0" static let sdkVersion = "\(shortVersion)-ios" } diff --git a/docs/src/integration.md b/docs/src/integration.md index 18c989b0..51134fea 100644 --- a/docs/src/integration.md +++ b/docs/src/integration.md @@ -33,20 +33,20 @@ This is the recommended integration method. ``` swift dependencies: [ - .package(url: "https://github.com/afterpay/sdk-ios.git", .upToNextMajor(from: "5.6.1")) + .package(url: "https://github.com/afterpay/sdk-ios.git", .upToNextMajor(from: "5.7.0")) ] ``` ## Carthage ``` swift -github "afterpay/sdk-ios" ~> 5.6 +github "afterpay/sdk-ios" ~> 5.7 ``` ## CocoaPods ``` ruby -pod 'Afterpay', '~> 5.6' +pod 'Afterpay', '~> 5.7' ``` ## Manual @@ -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.6.1 +git checkout 5.7.0 ``` #### Project / Workspace Integration