Skip to content

Commit e44a29d

Browse files
Release v1.1.0
1 parent 86458b9 commit e44a29d

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Version 1.1.0
4+
- Support App Store Server Notification v2.10 [#74]
5+
- Require appAdamId in SignedDataVerifier for the Production environment [#68]
6+
37
## Version 1.0.0
48
- Switch from GSON to Jackson for parsing [#58]
59
- Rename Status to VerificationStatus [#59]

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The Java server library for the [App Store Server API](https://developer.apple.c
1515

1616
### Gradle
1717
```groovy
18-
implementation 'com.apple.itunes.storekit:app-store-server-library:1.0.0'
18+
implementation 'com.apple.itunes.storekit:app-store-server-library:1.1.0'
1919
2020
```
2121

@@ -24,7 +24,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:1.0.0'
2424
<dependency>
2525
<groupId>com.apple.itunes.storekit</groupId>
2626
<artifactId>app-store-server-library</artifactId>
27-
<version>1.0.0</version>
27+
<version>1.1.0</version>
2828
</dependency>
2929
```
3030

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=1.0.0
1+
version=1.1.0
22
group=com.apple.itunes.storekit

src/main/java/com/apple/itunes/storekit/client/AppStoreServerAPIClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
public class AppStoreServerAPIClient {
4545
private static final String PRODUCTION_URL = "https://api.storekit.itunes.apple.com";
4646
private static final String SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com";
47-
private static final String USER_AGENT = "app-store-server-library/java/1.0.0";
47+
private static final String USER_AGENT = "app-store-server-library/java/1.1.0";
4848
private static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");
4949

5050
private final OkHttpClient httpClient;

0 commit comments

Comments
 (0)