Skip to content

Commit 73cd4a5

Browse files
Merge pull request #48 from alexanderjordanbaker/Release030
Release 0.3.0
2 parents 2d11b06 + 7cd26f8 commit 73cd4a5

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.3.0
4+
- Add missing status field to the Data model [#33]
5+
- Add error codes from App Store Server API v1.9 [#39]
6+
- Add new fields from App Store Server API v1.10 [#46]
7+
- Add support for reading unknown enum values [#45]
8+
- Add support for Xcode and LocalTesting environments [#44]
9+
310
## 0.2.1
411
- Add py.typed file [#19] (https://github.com/apple/app-store-server-library-python/pull/19)
512
- Correct type annotation in PromotionalOfferSignatureCreator [#17] (https://github.com/apple/app-store-server-library-python/pull/17)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ signed_data_verifier = SignedDataVerifier(root_certificates, enable_online_check
6767

6868
try:
6969
signed_notification = "ey.."
70-
payload = signed_data_verifier.verify_and_decode_notification()
70+
payload = signed_data_verifier.verify_and_decode_notification(signed_notification)
7171
print(payload)
7272
except VerificationException as e:
7373
print(e)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="app-store-server-library",
12-
version="0.2.1",
12+
version="0.3.0",
1313
description="The App Store Server Library",
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)