Skip to content

Commit 1202058

Browse files
Merge pull request apple#108 from alexanderjordanbaker/Release1.5.0
Release 1.5.0
2 parents 949d836 + c1012b5 commit 1202058

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## Version 1.5.0
4+
- Add an async client built on httpx [https://github.com/apple/app-store-server-library-python/pull/105]
5+
- Drop Python 3.7 support [https://github.com/apple/app-store-server-library-python/pull/106]
6+
- Add check for original transaction id in legacy receipts [https://github.com/apple/app-store-server-library-python/pull/104] from @willhnation
7+
38
## Version 1.4.0
49
- Incorporate changes for App Store Server API v1.13 and App Store Server Notifications v2.13 [https://github.com/apple/app-store-server-library-python/pull/102]
510
- Remove the upper limit on libraries that are unlikely to break upon upgrade [https://github.com/apple/app-store-server-library-python/pull/101]

appstoreserverlibrary/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ def _get_full_url(self, path) -> str:
492492

493493
def _get_headers(self) -> Dict[str, str]:
494494
return {
495-
'User-Agent': "app-store-server-library/python/1.4.0",
495+
'User-Agent': "app-store-server-library/python/1.5.0",
496496
'Authorization': 'Bearer ' + self._generate_token(),
497497
'Accept': 'application/json'
498498
}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="app-store-server-library",
12-
version="1.4.0",
12+
version="1.5.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)