Skip to content

Commit 250fd58

Browse files
Merge pull request #142 from riyazpanjwani/main
Release v1.9.0
2 parents 96199a2 + 82dd6d4 commit 250fd58

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.9.0
4+
- Incorporate changes for App Store Server API v1.16 [https://github.com/apple/app-store-server-library-python/pull/141] from @riyazpanjwani
5+
- Fix SyntaxWarning in regex pattern string [https://github.com/apple/app-store-server-library-python/pull/138] from @krepe90
6+
37
## Version 1.8.0
48
- Incorporate changes for App Store Server API v1.15 and App Store Server Notifications v2.15 [https://github.com/apple/app-store-server-library-python/pull/134]
59

appstoreserverlibrary/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ def _get_full_url(self, path) -> str:
524524

525525
def _get_headers(self) -> Dict[str, str]:
526526
return {
527-
'User-Agent': "app-store-server-library/python/1.8.0",
527+
'User-Agent': "app-store-server-library/python/1.9.0",
528528
'Authorization': 'Bearer ' + self._generate_token(),
529529
'Accept': 'application/json'
530530
}

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