Skip to content

Commit

Permalink
Merge pull request #48 from alexanderjordanbaker/Release030
Browse files Browse the repository at this point in the history
Release 0.3.0
  • Loading branch information
alexanderjordanbaker authored Nov 29, 2023
2 parents 2d11b06 + 7cd26f8 commit 73cd4a5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
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="0.2.1",
version="0.3.0",
description="The App Store Server Library",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 73cd4a5

Please sign in to comment.