Skip to content

Commit

Permalink
Merge pull request #247 from afterpay/release/5.3.0
Browse files Browse the repository at this point in the history
EIT-2577: Prepare for release: v5.3.0
  • Loading branch information
ScottAntonacAP authored Mar 10, 2023
2 parents ace7d54 + f3ba833 commit fe2e959
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Configurations/Afterpay-Shared.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Sources/Afterpay/Model/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
8 changes: 4 additions & 4 deletions docs/src/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit fe2e959

Please sign in to comment.