Skip to content

Commit

Permalink
Merge pull request #96 from alexanderjordanbaker/v1.3.0
Browse files Browse the repository at this point in the history
Release v1.3.0
  • Loading branch information
alexanderjordanbaker authored Jun 14, 2024
2 parents e746f5d + 04e3c85 commit 35b9448
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Version 1.3.0
- Incorporate changes for App Store Server API v1.12 and App Store Server Notifications v2.12 [https://github.com/apple/app-store-server-library-python/pull/95]
- Fix deprecation warnings from cryptography [https://github.com/apple/app-store-server-library-python/pull/94] from @WFT
- Replace use of deprecated datetime.utcnow() [https://github.com/apple/app-store-server-library-python/pull/93] from @WFT
- Cache cattrs values to prevent memory leak [https://github.com/apple/app-store-server-library-python/pull/92] from @Reskov

## Version 1.2.1
- Fix issue with OfferType in JWSTransactionDecodedPayload [https://github.com/apple/app-store-server-library-python/pull/88] from @devinwang

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 _make_request(self, path: str, method: str, queryParameters: Dict[str, Union
c = _get_cattrs_converter(type(body)) if body is not None else None
json = c.unstructure(body) if body is not None else None
headers = {
'User-Agent': "app-store-server-library/python/1.2.1",
'User-Agent': "app-store-server-library/python/1.3.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.2.1",
version="1.3.0",
description="The App Store Server Library",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 35b9448

Please sign in to comment.