Skip to content

Commit 3bb5816

Browse files
Merge pull request #50 from alexanderjordanbaker/Release1.0
Release version 1.0
2 parents 3d2ab9e + b531f49 commit 3bb5816

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

CHANGELOG.md

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

3+
## Version 1.0.0
4+
- Add error message to APIException [#48]
5+
36
## Version 0.2.0
47
- Add support for reading unknown enum values [#35]
58
- Add support for Xcode and LocalTesting environments [#34]

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ The Node.js server library for the [App Store Server API](https://developer.appl
88
4. [Usage](#usage)
99
5. [Support](#support)
1010

11-
## ⚠️ Beta ⚠️
12-
13-
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.
14-
1511
## Installation
1612

1713
#### Requirements

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ import { URLSearchParams } from 'url';
8181
export class AppStoreServerAPIClient {
8282
private static PRODUCTION_URL = "https://api.storekit.itunes.apple.com";
8383
private static SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com";
84-
private static USER_AGENT = "app-store-server-library/node/0.1";
84+
private static USER_AGENT = "app-store-server-library/node/1.0.0";
8585

8686
private issuerId: string
8787
private keyId: string

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apple/app-store-server-library",
3-
"version": "0.2.0",
3+
"version": "1.0.0",
44
"description": "The App Store Server Library",
55
"main": "dist/index.js",
66
"keywords": [],

0 commit comments

Comments
 (0)