Skip to content

Commit 35b9448

Browse files
Merge pull request #96 from alexanderjordanbaker/v1.3.0
Release v1.3.0
2 parents e746f5d + 04e3c85 commit 35b9448

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

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

3+
## Version 1.3.0
4+
- 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]
5+
- Fix deprecation warnings from cryptography [https://github.com/apple/app-store-server-library-python/pull/94] from @WFT
6+
- Replace use of deprecated datetime.utcnow() [https://github.com/apple/app-store-server-library-python/pull/93] from @WFT
7+
- Cache cattrs values to prevent memory leak [https://github.com/apple/app-store-server-library-python/pull/92] from @Reskov
8+
39
## Version 1.2.1
410
- Fix issue with OfferType in JWSTransactionDecodedPayload [https://github.com/apple/app-store-server-library-python/pull/88] from @devinwang
511

appstoreserverlibrary/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ def _make_request(self, path: str, method: str, queryParameters: Dict[str, Union
492492
c = _get_cattrs_converter(type(body)) if body is not None else None
493493
json = c.unstructure(body) if body is not None else None
494494
headers = {
495-
'User-Agent': "app-store-server-library/python/1.2.1",
495+
'User-Agent': "app-store-server-library/python/1.3.0",
496496
'Authorization': 'Bearer ' + self._generate_token(),
497497
'Accept': 'application/json'
498498
}

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