Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Version 3.1.1
- Fix inclusion of static fields in new Advanced Commerce API types [https://github.com/apple/app-store-server-library-python/pull/194]

## Version 3.1.0
- Incorporate changes for Advanced Commerce API, Retention Messaging API 1.5 and App Store Server API v1.21 [https://github.com/apple/app-store-server-library-python/pull/188] [https://github.com/apple/app-store-server-library-python/pull/189] from @riyazpanjwani
- Incorporate changes for App Store Server API v1.20 [https://github.com/apple/app-store-server-library-python/pull/191] from @riyazpanjwani
Expand Down
2 changes: 1 addition & 1 deletion appstoreserverlibrary/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ def _get_full_url(self, path) -> str:

def _get_headers(self) -> Dict[str, str]:
return {
'User-Agent': "app-store-server-library/python/3.1.0",
'User-Agent': "app-store-server-library/python/3.1.1",
'Authorization': f'Bearer {self._generate_token()}',
'Accept': 'application/json'
}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "app-store-server-library"
version = "3.1.0"
version = "3.1.1"
description = "The App Store Server Library"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
Expand Down