Skip to content

Commit c69fda6

Browse files
Merge pull request #53 from alexanderjordanbaker/Release1.0
Release 1.0
2 parents 2d6b32a + c63c36e commit c69fda6

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+
## 1.0.0
4+
- Add error message to APIException [#52]
5+
36
## 0.3.0
47
- Add missing status field to the Data model [#33]
58
- Add error codes from App Store Server API v1.9 [#39]

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ The Python server library for the [App Store Server API](https://developer.apple
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

appstoreserverlibrary/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ def _make_request(self, path: str, method: str, queryParameters: Dict[str, Union
471471
c = _get_cattrs_converter(type(body)) if body != None else None
472472
json = c.unstructure(body) if body != None else None
473473
headers = {
474-
'User-Agent': "app-store-server-library/python/0.1",
474+
'User-Agent': "app-store-server-library/python/1.0.0",
475475
'Authorization': 'Bearer ' + self._generate_token(),
476476
'Accept': 'application/json'
477477
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="app-store-server-library",
12-
version="0.3.0",
12+
version="1.0.0",
1313
description="The App Store Server Library",
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)