Skip to content

Commit 7a2f5aa

Browse files
Merge pull request #63 from alexanderjordanbaker/v2.3.0
Release 2.3.0 of the Swift library
2 parents 21fff20 + 7c907c2 commit 7a2f5aa

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Version 2.3.0
4+
- Incorporate changes for App Store Server API v1.13 and App Store Server Notifications v2.13 [https://github.com/apple/app-store-server-library-swift/pull/61]
5+
- Resolve issue where a Date passed as an input that contained a microsecond portiion would cause an API exception [https://github.com/apple/app-store-server-library-swift/pull/62]
6+
37
## Version 2.2.0
48
- 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]
59
- Improve README installation code [https://github.com/apple/app-store-server-library-swift/pull/56] from @philmodin

README.md

Lines changed: 1 addition & 1 deletion
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.2.0")),
15+
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "2.3.0")),
1616
```
1717

1818
## Documentation

Sources/AppStoreServerLibrary/AppStoreServerAPIClient.swift

Lines changed: 1 addition & 1 deletion
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.2.0"
17+
private static let userAgent = "app-store-server-library/swift/2.3.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)