Skip to content

Commit 0be1f03

Browse files
Merge pull request #66 from alexanderjordanbaker/Releasev1.1.0
Release v1.1.0
2 parents f742126 + 56c7ec2 commit 0be1f03

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

CHANGELOG.md

+15-10
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
# Changelog
22

3+
## Version 1.1.0
4+
- Support App Store Server Notifications v2.10 [https://github.com/apple/app-store-server-library-python/pull/65]
5+
- Bump cryptography and pyOpenSSL maximum versions [https://github.com/apple/app-store-server-library-python/pull/61]/[https://github.com/apple/app-store-server-library-python/pull/63]
6+
- Require appAppleId in SignedDataVerifier for the Production environment [https://github.com/apple/app-store-server-library-python/pull/60]
7+
38
## 1.0.0
4-
- Add error message to APIException [#52]
9+
- Add error message to APIException [https://github.com/apple/app-store-server-library-python/pull/52]
510

611
## 0.3.0
7-
- Add missing status field to the Data model [#33]
8-
- Add error codes from App Store Server API v1.9 [#39]
9-
- Add new fields from App Store Server API v1.10 [#46]
10-
- Add support for reading unknown enum values [#45]
11-
- Add support for Xcode and LocalTesting environments [#44]
12+
- Add missing status field to the Data model [https://github.com/apple/app-store-server-library-python/pull/33]
13+
- Add error codes from App Store Server API v1.9 [https://github.com/apple/app-store-server-library-python/pull/39]
14+
- Add new fields from App Store Server API v1.10 [https://github.com/apple/app-store-server-library-python/pull/46]
15+
- Add support for reading unknown enum values [https://github.com/apple/app-store-server-library-python/pull/45]
16+
- Add support for Xcode and LocalTesting environments [https://github.com/apple/app-store-server-library-python/pull/44]
1217

1318
## 0.2.1
14-
- Add py.typed file [#19] (https://github.com/apple/app-store-server-library-python/pull/19)
15-
- Correct type annotation in PromotionalOfferSignatureCreator [#17] (https://github.com/apple/app-store-server-library-python/pull/17)
19+
- Add py.typed file [https://github.com/apple/app-store-server-library-python/pull/19]
20+
- Correct type annotation in PromotionalOfferSignatureCreator [https://github.com/apple/app-store-server-library-python/pull/17]
1621

1722
## 0.2.0
1823

19-
- Correct type in LastTransactionsItem's status field [#11] (https://github.com/apple/app-store-server-library-python/pull/11)
20-
- Fix default value None for fields should require an Optional type [#6] (https://github.com/apple/app-store-server-library-python/pull/6)
24+
- Correct type in LastTransactionsItem's status field [https://github.com/apple/app-store-server-library-python/pull/11]
25+
- Fix default value None for fields should require an Optional type [https://github.com/apple/app-store-server-library-python/pull/6]

appstoreserverlibrary/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ def _make_request(self, path: str, method: str, queryParameters: Dict[str, Union
471471
c = _get_cattrs_converter(type(body)) if body != None else None
472472
json = c.unstructure(body) if body != None else None
473473
headers = {
474-
'User-Agent': "app-store-server-library/python/1.0.0",
474+
'User-Agent': "app-store-server-library/python/1.1.0",
475475
'Authorization': 'Bearer ' + self._generate_token(),
476476
'Accept': 'application/json'
477477
}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="app-store-server-library",
12-
version="1.0.0",
12+
version="1.1.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)