Skip to content

Commit dc4bcaf

Browse files
Merge pull request #215 from alexanderjordanbaker/v4.0.0
Release v4.0.0 of the App Store Server Library
2 parents 605eb78 + d4f8eef commit dc4bcaf

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

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

3+
## Version 4.0.0
4+
- Support Retention Messaging API [https://github.com/apple/app-store-server-library-java/pull/198]
5+
- This changes internal details of BaseAppStoreServerAPIClient, which is a breaking change for subclassing clients
6+
- Incorporate changes for App Store Server API v1.17 [https://github.com/apple/app-store-server-library-java/pull/201] from @riyazpanjwani
7+
- Add a new VerificationStatus case for retryable OCSP network failures [https://github.com/apple/app-store-server-library-java/pull/204]
8+
- Incorporate changes for App Store Server API v1.18 [https://github.com/apple/app-store-server-library-java/pull/209] from @izanger
9+
- This changes OfferType's case SUBSCRIPTION_OFFER_CODE to OFFER_CODE, which is a breaking change
10+
311
## Version 3.6.0
412
- Testing new Maven Central deployment process [https://github.com/apple/app-store-server-library-java/pull/185]
513

README.md

Lines changed: 2 additions & 2 deletions
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:3.6.0'
18+
implementation 'com.apple.itunes.storekit:app-store-server-library:4.0.0'
1919
2020
```
2121

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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=3.6.0
1+
version=4.0.0
22
group=com.apple.itunes.storekit

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public abstract class BaseAppStoreServerAPIClient {
4949
private static final String PRODUCTION_URL = "https://api.storekit.itunes.apple.com";
5050
private static final String SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com";
5151
private static final String LOCAL_TESTING_URL = "https://local-testing-base-url";
52-
private static final String USER_AGENT = "app-store-server-library/java/3.6.0";
52+
private static final String USER_AGENT = "app-store-server-library/java/4.0.0";
5353
private static final String JSON = "application/json; charset=utf-8";
5454
private static final String PNG = "image/png";
5555

0 commit comments

Comments
 (0)