From f3ba83361e12b7ea07d70bccd3d4ecac65289a06 Mon Sep 17 00:00:00 2001 From: Scott Antonac Date: Fri, 10 Mar 2023 16:13:14 +1100 Subject: [PATCH] EIT-2577: prepare for release v5.3.0 --- Configurations/Afterpay-Shared.xcconfig | 2 +- Sources/Afterpay/Model/Version.swift | 2 +- docs/src/integration.md | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Configurations/Afterpay-Shared.xcconfig b/Configurations/Afterpay-Shared.xcconfig index c3129d5f..e6c50d82 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.2.0 +MARKETING_VERSION = 5.3.0 diff --git a/Sources/Afterpay/Model/Version.swift b/Sources/Afterpay/Model/Version.swift index 9e08ede0..28a99e0c 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.2.0" + static let shortVersion = "5.3.0" static let sdkVersion = "\(shortVersion)-ios" } diff --git a/docs/src/integration.md b/docs/src/integration.md index 5e68cb04..979c8cda 100644 --- a/docs/src/integration.md +++ b/docs/src/integration.md @@ -28,20 +28,20 @@ This is the recommended integration method. ``` swift dependencies: [ - .package(url: "https://github.com/afterpay/sdk-ios.git", .upToNextMajor(from: "5.2.0")) + .package(url: "https://github.com/afterpay/sdk-ios.git", .upToNextMajor(from: "5.3.0")) ] ``` ## Carthage ``` swift -github "afterpay/sdk-ios" ~> 5.2 +github "afterpay/sdk-ios" ~> 5.3 ``` ## CocoaPods ``` swift -pod 'Afterpay', '~> 5.2' +pod 'Afterpay', '~> 5.3' ``` ## Manual @@ -60,7 +60,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.2.0 +git checkout 5.3.0 ``` #### Project / Workspace Integration