From 981648c9d84d156185b3f46f2d7c616c9ade4b61 Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Wed, 6 May 2026 22:27:35 -0700 Subject: [PATCH] Release v5.1.1 --- CHANGELOG.md | 3 +++ README.md | 4 ++-- gradle.properties | 2 +- .../itunes/storekit/client/BaseAppStoreServerAPIClient.java | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23474a58..40a01679 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## Version 5.1.1 +- Fix inclusion of static fields in new Advanced Commerce API types [https://github.com/apple/app-store-server-library-java/pull/253] + ## Version 5.1.0 - Incorporate changes for Advanced Commerce API, Retention Messaging API 1.5 and App Store Server API v1.21 [https://github.com/apple/app-store-server-library-java/pull/245] [https://github.com/apple/app-store-server-library-java/pull/246] from @riyazpanjwani - Incorporate changes for App Store Server API v1.20 [https://github.com/apple/app-store-server-library-java/pull/248] from @riyazpanjwani diff --git a/README.md b/README.md index 831e8498..35de6a7d 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:5.1.0' +implementation 'com.apple.itunes.storekit:app-store-server-library:5.1.1' ``` @@ -24,7 +24,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:5.1.0' com.apple.itunes.storekit app-store-server-library - 5.1.0 + 5.1.1 ``` diff --git a/gradle.properties b/gradle.properties index 27c0b75c..e442cd01 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=5.1.0 +version=5.1.1 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 dff4426d..703bf61d 100644 --- a/src/main/java/com/apple/itunes/storekit/client/BaseAppStoreServerAPIClient.java +++ b/src/main/java/com/apple/itunes/storekit/client/BaseAppStoreServerAPIClient.java @@ -57,7 +57,7 @@ public abstract class BaseAppStoreServerAPIClient { private static final String PRODUCTION_URL = "https://api.storekit.apple.com"; private static final String SANDBOX_URL = "https://api.storekit-sandbox.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/5.1.0"; + private static final String USER_AGENT = "app-store-server-library/java/5.1.1"; private static final String JSON = "application/json; charset=utf-8"; private static final String PNG = "image/png";