From 54a3c977a6cf7a415c74c534da557992f930b79d Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Mon, 1 Jun 2026 11:33:21 -0700 Subject: [PATCH] Release v3.1.2 --- CHANGELOG.md | 3 +++ appstoreserverlibrary/api_client.py | 2 +- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd0f86ad..3263e304 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## Version 3.1.2 +- Support validity with SKEW checking with cryptography 43 methods [https://github.com/apple/app-store-server-library-python/pull/197] + ## 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] diff --git a/appstoreserverlibrary/api_client.py b/appstoreserverlibrary/api_client.py index 3441041c..0309ec93 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.1.1", + 'User-Agent': "app-store-server-library/python/3.1.2", 'Authorization': f'Bearer {self._generate_token()}', 'Accept': 'application/json' } diff --git a/pyproject.toml b/pyproject.toml index 79be72fd..6f7b36ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "app-store-server-library" -version = "3.1.1" +version = "3.1.2" description = "The App Store Server Library" readme = {file = "README.md", content-type = "text/markdown"} license = {text = "MIT"}