Skip to content
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
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