Skip to content

Commit 26f2682

Browse files
Merge pull request #89 from alexanderjordanbaker/v1.2.1
Release v1.2.1
2 parents 86e6611 + b61f909 commit 26f2682

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
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.2.1
4+
- Fix issue with OfferType in JWSTransactionDecodedPayload [https://github.com/apple/app-store-server-library-python/pull/88] from @devinwang
5+
36
## Version 1.2.0
47
- Incorporate changes for App Store Server API v1.11 and App Store Server Notifications v2.11 [https://github.com/apple/app-store-server-library-python/pull/85]
58
- Various documentation and quality of life improvements, including contributions from @CallumWatkins, @hakusai22, and @sunny-dubey

appstoreserverlibrary/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ def _make_request(self, path: str, method: str, queryParameters: Dict[str, Union
484484
c = _get_cattrs_converter(type(body)) if body is not None else None
485485
json = c.unstructure(body) if body is not None else None
486486
headers = {
487-
'User-Agent': "app-store-server-library/python/1.2.0",
487+
'User-Agent': "app-store-server-library/python/1.2.1",
488488
'Authorization': 'Bearer ' + self._generate_token(),
489489
'Accept': 'application/json'
490490
}

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="1.2.0",
12+
version="1.2.1",
1313
description="The App Store Server Library",
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)