From 7cd26f8f283087baa8ebcc6bb4683675c3274c21 Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Mon, 27 Nov 2023 11:18:55 -0600 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 7 +++++++ README.md | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec087e9..646cf15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.3.0 +- Add missing status field to the Data model [#33] +- Add error codes from App Store Server API v1.9 [#39] +- Add new fields from App Store Server API v1.10 [#46] +- Add support for reading unknown enum values [#45] +- Add support for Xcode and LocalTesting environments [#44] + ## 0.2.1 - Add py.typed file [#19] (https://github.com/apple/app-store-server-library-python/pull/19) - Correct type annotation in PromotionalOfferSignatureCreator [#17] (https://github.com/apple/app-store-server-library-python/pull/17) diff --git a/README.md b/README.md index 5b655a7..7b63d9a 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ signed_data_verifier = SignedDataVerifier(root_certificates, enable_online_check try: signed_notification = "ey.." - payload = signed_data_verifier.verify_and_decode_notification() + payload = signed_data_verifier.verify_and_decode_notification(signed_notification) print(payload) except VerificationException as e: print(e) diff --git a/setup.py b/setup.py index 0d5d7b7..ee4fce0 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="app-store-server-library", - version="0.2.1", + version="0.3.0", description="The App Store Server Library", long_description=long_description, long_description_content_type="text/markdown",