Skip to content

Commit

Permalink
Merge pull request #108 from alexanderjordanbaker/Release1.5.0
Browse files Browse the repository at this point in the history
Release 1.5.0
  • Loading branch information
alexanderjordanbaker authored Sep 18, 2024
2 parents 949d836 + c1012b5 commit 1202058
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Version 1.5.0
- Add an async client built on httpx [https://github.com/apple/app-store-server-library-python/pull/105]
- Drop Python 3.7 support [https://github.com/apple/app-store-server-library-python/pull/106]
- Add check for original transaction id in legacy receipts [https://github.com/apple/app-store-server-library-python/pull/104] from @willhnation

## Version 1.4.0
- 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]
- Remove the upper limit on libraries that are unlikely to break upon upgrade [https://github.com/apple/app-store-server-library-python/pull/101]
Expand Down
2 changes: 1 addition & 1 deletion appstoreserverlibrary/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def _get_full_url(self, path) -> str:

def _get_headers(self) -> Dict[str, str]:
return {
'User-Agent': "app-store-server-library/python/1.4.0",
'User-Agent': "app-store-server-library/python/1.5.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="1.4.0",
version="1.5.0",
description="The App Store Server Library",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 1202058

Please sign in to comment.