Skip to content

Commit

Permalink
Merge pull request #53 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 2d6b32a + c63c36e commit c69fda6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.0.0
- Add error message to APIException [#52]

## 0.3.0
- Add missing status field to the Data model [#33]
- Add error codes from App Store Server API v1.9 [#39]
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ The Python 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

#### Requirements
Expand Down
2 changes: 1 addition & 1 deletion appstoreserverlibrary/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def _make_request(self, path: str, method: str, queryParameters: Dict[str, Union
c = _get_cattrs_converter(type(body)) if body != None else None
json = c.unstructure(body) if body != None else None
headers = {
'User-Agent': "app-store-server-library/python/0.1",
'User-Agent': "app-store-server-library/python/1.0.0",
'Authorization': 'Bearer ' + self._generate_token(),
'Accept': 'application/json'
}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="app-store-server-library",
version="0.3.0",
version="1.0.0",
description="The App Store Server Library",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit c69fda6

Please sign in to comment.