Skip to content

Commit aff5b49

Browse files
Merge pull request #58 from alexanderjordanbaker/v2.2.0
Release v2.2.0
2 parents c714ad3 + 60a4833 commit aff5b49

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

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

3+
## Version 2.2.0
4+
- Incorporate changes for App Store Server API v1.12 and App Store Server Notifications v2.12 [https://github.com/apple/app-store-server-library-swift/pull/57]
5+
- Improve README installation code [https://github.com/apple/app-store-server-library-swift/pull/56] from @philmodin
6+
- Handle null appAccountToken appropriately in PromotionalOfferSignatureCreator and update JSON parsing logic to follow standard patterns [https://github.com/apple/app-store-server-library-java/pull/100]
7+
38
## Version 2.1.0
49
- 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]
510
- Various documentation and quality of life improvements, including contributions from @Fidetro

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Swift server library for the [App Store Server API](https://developer.apple.
1212
### Swift Package Manager
1313
Add the following dependency
1414
```swift
15-
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "2.1.0")),
15+
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "2.2.0")),
1616
```
1717

1818
## 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.1.0"
17+
private static let userAgent = "app-store-server-library/swift/2.2.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)