Skip to content

Commit ada5bf9

Browse files
Merge pull request #181 from alexanderjordanbaker/Release3.0.0
Release v3.0.0
2 parents 524c727 + b201254 commit ada5bf9

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

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 3.0.0
4+
- Incorporate changes for App Store Server API v1.19 [https://github.com/apple/app-store-server-library-python/pull/172] from @riyazpanjwani
5+
- This changes ConsumptionRequest and several dependent types to the V2 variant, while the V1 version was created as a new type, to align with documentation, which is a breaking change
6+
37
## Version 2.0.0
48
- Support Retention Messaging API [https://github.com/apple/app-store-server-library-python/pull/160]
59
- This changes internal details of BaseAppStoreServerAPIClient, which is a breaking change for subclassing clients

appstoreserverlibrary/api_client.py

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

637637
def _get_headers(self) -> Dict[str, str]:
638638
return {
639-
'User-Agent': "app-store-server-library/python/2.0.0",
639+
'User-Agent': "app-store-server-library/python/3.0.0",
640640
'Authorization': f'Bearer {self._generate_token()}',
641641
'Accept': 'application/json'
642642
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "app-store-server-library"
9-
version = "2.0.0"
9+
version = "3.0.0"
1010
description = "The App Store Server Library"
1111
readme = {file = "README.md", content-type = "text/markdown"}
1212
license = {text = "MIT"}

0 commit comments

Comments
 (0)