Skip to content

Commit 098851a

Browse files
Merge pull request #135 from alexanderjordanbaker/v1.8.0
Release v1.8.0
2 parents 637df16 + e8696ef commit 098851a

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.8.0
4+
- Incorporate changes for App Store Server API v1.15 and App Store Server Notifications v2.15 [https://github.com/apple/app-store-server-library-python/pull/134]
5+
36
## Version 1.7.0
47
- Update the SignedDataVerifier to cache verified certificate chains, improving performance [https://github.com/apple/app-store-server-library-python/pull/122]
58

appstoreserverlibrary/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def _get_full_url(self, path) -> str:
501501

502502
def _get_headers(self) -> Dict[str, str]:
503503
return {
504-
'User-Agent': "app-store-server-library/python/1.7.0",
504+
'User-Agent': "app-store-server-library/python/1.8.0",
505505
'Authorization': 'Bearer ' + self._generate_token(),
506506
'Accept': 'application/json'
507507
}

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.7.0",
12+
version="1.8.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)