Skip to content

Commit e5228b8

Browse files
Merge pull request #29 from alexanderjordanbaker/RemoveUnsupportedPlatforms
Limit platforms to supported platforms
2 parents 3e425c7 + d04871c commit e5228b8

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

Package.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ import PackageDescription
77
let package = Package(
88
name: "AppStoreServerLibrary",
99
platforms: [
10-
.macOS(.v11),
11-
.iOS(.v13),
12-
.watchOS(.v6),
13-
.tvOS(.v13),
10+
.macOS(.v11), // And other server environments
1411
],
1512
products: [
1613
.library(

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The Swift server library for the [App Store Server API](https://developer.apple.
1313
```swift
1414
Add the following dependency
1515

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

1919
## Documentation

Sources/AppStoreServerLibrary/AppStoreServerAPIClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import NIOFoundationCompat
99

1010
public class AppStoreServerAPIClient {
1111

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

0 commit comments

Comments
 (0)