Skip to content

Commit

Permalink
Merge pull request #22 from alexanderjordanbaker/Release1.0
Browse files Browse the repository at this point in the history
Release 1.0
  • Loading branch information
alexanderjordanbaker authored Dec 18, 2023
2 parents f877de0 + d464f0b commit 75ef781
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## Version 1.0.0
- Add status field to the data model [#7]
- Adding new error codes from App Store Server API v1.9 [#9]
- Adding new fields from App Store Server API v1.10 [#10]
- Migrate to AsyncHTTPClient [#15]
- Add support for LocalTesting and Xcode environments [#19]
- Allow reading unknown enum values [#20]
- Add errorMessage to APIException [#21]
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,13 @@ The Swift server library for the [App Store Server API](https://developer.apple.
4. [Usage](#usage)
5. [Support](#support)

## ⚠️ Beta ⚠️

This software is currently in Beta testing. Therefore, it should only be used for testing purposes, like for the Sandbox environment. API signatures may change between releases and signature verification may receive security updates.

## Installation

### Swift Package Manager
```swift
Add the following dependency

.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "0.1.0")),
.package(url: "https://github.com/apple/app-store-server-library-swift.git", .upToNextMinor(from: "1.0.0")),
```

## 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/0.1.0"
private static let userAgent = "app-store-server-library/swift/1.0.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 appStoreConnectAudience = "appstoreconnect-v1"
Expand Down

0 comments on commit 75ef781

Please sign in to comment.