Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare release v5.7.0 (EIT-4224) #274

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.6.1
MARKETING_VERSION = 5.7.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.6.1"
static let shortVersion = "5.7.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 @@ -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

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