From ea86f14328bbceba58a7efc47617747b5c578767 Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Tue, 5 May 2026 17:00:11 -0700 Subject: [PATCH] Releasing v3.1.0 --- CHANGELOG.md | 6 ++++++ appstoreserverlibrary/api_client.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d046f665..5fd6eac7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Version 3.1.0 +- Incoproate 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 +- Incorporate changes for Retention Messaging API v1.3 and 1.4 [https://github.com/apple/app-store-server-library-python/pull/186] +- Fix deliveryStatus not being included in consumption information [https://github.com/apple/app-store-server-library-python/pull/184] from @ohadbenita + ## Version 3.0.0 - Incorporate changes for App Store Server API v1.19 [https://github.com/apple/app-store-server-library-python/pull/172] from @riyazpanjwani - 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 diff --git a/appstoreserverlibrary/api_client.py b/appstoreserverlibrary/api_client.py index e9dcb6d7..28893815 100644 --- a/appstoreserverlibrary/api_client.py +++ b/appstoreserverlibrary/api_client.py @@ -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.0.0", + 'User-Agent': "app-store-server-library/python/3.1.0", 'Authorization': f'Bearer {self._generate_token()}', 'Accept': 'application/json' } diff --git a/pyproject.toml b/pyproject.toml index e9c5a0e8..359ab3b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "app-store-server-library" -version = "3.0.0" +version = "3.1.0" description = "The App Store Server Library" readme = {file = "README.md", content-type = "text/markdown"} license = {text = "MIT"}