From 006cd799754461f1f478991416933d949ded3e79 Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Wed, 11 Mar 2026 22:21:51 -0700 Subject: [PATCH] Release v5.0.0 --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- gradle.properties | 2 +- .../itunes/storekit/client/BaseAppStoreServerAPIClient.java | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48c74c1c..a1bd6d1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Version 5.0.0 +- Incorporate changes for App Store Server API v1.19 [https://github.com/apple/app-store-server-library-java/pull/219] from @riyazpanjwani + - This changes ConsumptionRequest and several dependent types to the V2 variant, while the V1 version was created as a new type, to align with documentation, which is a breaking change + ## Version 4.0.0 - Support Retention Messaging API [https://github.com/apple/app-store-server-library-java/pull/198] - This changes internal details of BaseAppStoreServerAPIClient, which is a breaking change for subclassing clients diff --git a/README.md b/README.md index 6a8db65c..701d5d57 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ The Java server library for the [App Store Server API](https://developer.apple.c ### Gradle ```groovy -implementation 'com.apple.itunes.storekit:app-store-server-library:4.0.0' +implementation 'com.apple.itunes.storekit:app-store-server-library:5.0.0' ``` @@ -24,7 +24,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:4.0.0' com.apple.itunes.storekit app-store-server-library - 4.0.0 + 5.0.0 ``` diff --git a/gradle.properties b/gradle.properties index b0f3f48e..e0176692 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=4.0.0 +version=5.0.0 group=com.apple.itunes.storekit diff --git a/src/main/java/com/apple/itunes/storekit/client/BaseAppStoreServerAPIClient.java b/src/main/java/com/apple/itunes/storekit/client/BaseAppStoreServerAPIClient.java index ba4c36ea..017a0f8f 100644 --- a/src/main/java/com/apple/itunes/storekit/client/BaseAppStoreServerAPIClient.java +++ b/src/main/java/com/apple/itunes/storekit/client/BaseAppStoreServerAPIClient.java @@ -49,7 +49,7 @@ public abstract class BaseAppStoreServerAPIClient { private static final String PRODUCTION_URL = "https://api.storekit.itunes.apple.com"; private static final String SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com"; private static final String LOCAL_TESTING_URL = "https://local-testing-base-url"; - private static final String USER_AGENT = "app-store-server-library/java/4.0.0"; + private static final String USER_AGENT = "app-store-server-library/java/5.0.0"; private static final String JSON = "application/json; charset=utf-8"; private static final String PNG = "image/png";