Skip to content

Commit

Permalink
Merge pull request #29 from alexanderjordanbaker/RemoveUnsupportedPla…
Browse files Browse the repository at this point in the history
…tforms

Limit platforms to supported platforms
  • Loading branch information
alexanderjordanbaker authored Jan 23, 2024
2 parents 3e425c7 + d04871c commit e5228b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ import PackageDescription
let package = Package(
name: "AppStoreServerLibrary",
platforms: [
.macOS(.v11),
.iOS(.v13),
.watchOS(.v6),
.tvOS(.v13),
.macOS(.v11), // And other server environments
],
products: [
.library(
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The Swift server library for the [App Store Server API](https://developer.apple.
```swift
Add the following dependency

.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "1.0.1")),
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "1.0.2")),
```

## Documentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import NIOFoundationCompat

public class AppStoreServerAPIClient {

private static let userAgent = "app-store-server-library/swift/1.0.0"
private static let userAgent = "app-store-server-library/swift/1.0.2"
private static let productionUrl = "https://api.storekit.itunes.apple.com"
private static let sandboxUrl = "https://api.storekit-sandbox.itunes.apple.com"
private static let appStoreConnectAudience = "appstoreconnect-v1"
Expand Down

0 comments on commit e5228b8

Please sign in to comment.