Skip to content

Commit

Permalink
Merge pull request #63 from alexanderjordanbaker/v2.3.0
Browse files Browse the repository at this point in the history
Release 2.3.0 of the Swift library
  • Loading branch information
alexanderjordanbaker committed Jul 16, 2024
2 parents 21fff20 + 7c907c2 commit 7a2f5aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 2.3.0
- 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]
- 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]

## Version 2.2.0
- 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]
- Improve README installation code [https://github.com/apple/app-store-server-library-swift/pull/56] from @philmodin
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The Swift server library for the [App Store Server API](https://developer.apple.
### Swift Package Manager
Add the following dependency
```swift
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "2.2.0")),
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "2.3.0")),
```

## Documentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class AppStoreServerAPIClient {
case invalidEnvironment
}

private static let userAgent = "app-store-server-library/swift/2.2.0"
private static let userAgent = "app-store-server-library/swift/2.3.0"
private static let productionUrl = "https://api.storekit.itunes.apple.com"
private static let sandboxUrl = "https://api.storekit-sandbox.itunes.apple.com"
private static let localTestingUrl = "https://local-testing-base-url"
Expand Down

0 comments on commit 7a2f5aa

Please sign in to comment.