Skip to content

Commit 8b6b870

Browse files
Merge pull request #51 from alexanderjordanbaker/v2.1.0
Release version 2.1.0
2 parents e94683e + c69ee94 commit 8b6b870

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Version 2.1.0
4+
- Incorporate changes for App Store Server API v1.11 and App Store Server Notifications v2.11 [https://github.com/apple/app-store-server-library-swift/pull/49]
5+
- Various documentation and quality of life improvements, including contributions from @Fidetro
6+
37
## Version 2.0.0
48
- Incorporate changes for App Store Server API v1.10.1 [https://github.com/apple/app-store-server-library-swift/pull/42]
59
- This change is a breaking change, as the datatype of the price field has changed from Int32? to Int64?

README.md

+1-1
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: "2.0.0")),
16+
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "2.1.0")),
1717
```
1818

1919
## Documentation

Sources/AppStoreServerLibrary/AppStoreServerAPIClient.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class AppStoreServerAPIClient {
1414
case invalidEnvironment
1515
}
1616

17-
private static let userAgent = "app-store-server-library/swift/2.0.0"
17+
private static let userAgent = "app-store-server-library/swift/2.1.0"
1818
private static let productionUrl = "https://api.storekit.itunes.apple.com"
1919
private static let sandboxUrl = "https://api.storekit-sandbox.itunes.apple.com"
2020
private static let localTestingUrl = "https://local-testing-base-url"

0 commit comments

Comments
 (0)