Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.4.0 of the Python library #103

Merged
merged 1 commit into from
Jul 16, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 1.4.0
- 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]
- Remove the upper limit on libraries that are unlikely to break upon upgrade [https://github.com/apple/app-store-server-library-python/pull/101]

## 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
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.3.0",
'User-Agent': "app-store-server-library/python/1.4.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.3.0",
version="1.4.0",
description="The App Store Server Library",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
Loading