Skip to content

Commit 91ffc44

Browse files
Merge pull request #103 from alexanderjordanbaker/v1.4.0
Release v1.4.0 of the Python library
2 parents 404c086 + 3630c46 commit 91ffc44

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

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

3+
## Version 1.4.0
4+
- 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]
5+
- Remove the upper limit on libraries that are unlikely to break upon upgrade [https://github.com/apple/app-store-server-library-python/pull/101]
6+
37
## Version 1.3.0
48
- 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]
59
- Fix deprecation warnings from cryptography [https://github.com/apple/app-store-server-library-python/pull/94] from @WFT

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.3.0",
495+
'User-Agent': "app-store-server-library/python/1.4.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.3.0",
12+
version="1.4.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)