Skip to content

Commit 6128cfa

Browse files
Merge pull request #86 from alexanderjordanbaker/v1.2.0
Release version 1.2.0
2 parents 20da0cf + 8e0a551 commit 6128cfa

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

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

3+
## Version 1.2.0
4+
- Incorporate changes for App Store Server API v1.11 and App Store Server Notifications v2.11 [https://github.com/apple/app-store-server-library-node/pull/132]
5+
- Various documentation and quality of life improvements, including contributions from @CallumWatkins, @hakusai22, and @sunny-dubey
6+
37
## Version 1.1.0
48
- Support App Store Server Notifications v2.10 [https://github.com/apple/app-store-server-library-python/pull/65]
59
- Bump cryptography and pyOpenSSL maximum versions [https://github.com/apple/app-store-server-library-python/pull/61]/[https://github.com/apple/app-store-server-library-python/pull/63]

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.1.0",
487+
'User-Agent': "app-store-server-library/python/1.2.0",
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.1.0",
12+
version="1.2.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)