diff --git a/Package.swift b/Package.swift index af93be6..15e1617 100644 --- a/Package.swift +++ b/Package.swift @@ -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( diff --git a/README.md b/README.md index a77ae7e..dfe4782 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/Sources/AppStoreServerLibrary/AppStoreServerAPIClient.swift b/Sources/AppStoreServerLibrary/AppStoreServerAPIClient.swift index 003f2bb..4473565 100644 --- a/Sources/AppStoreServerLibrary/AppStoreServerAPIClient.swift +++ b/Sources/AppStoreServerLibrary/AppStoreServerAPIClient.swift @@ -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"