From 1e01a11eff3873894fa540899fcfd985d4f4543c Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Mon, 18 Dec 2023 14:23:01 -0600 Subject: [PATCH] Release 1.0 --- CHANGELOG | 5 +++++ README.md | 8 ++------ gradle.properties | 2 +- .../itunes/storekit/client/AppStoreServerAPIClient.java | 2 +- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 263cd321..38202032 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,10 @@ # Changelog +## Version 1.0.0 +- Switch from GSON to Jackson for parsing [#58] +- Rename Status to VerificationStatus [#59] +- Add message to APIException and update JavaDocs [#60] + ## Version 0.2.0 - Significantly increase unit test coverage [#51] - Add support for Xcode and LocalTesting environments [#49] diff --git a/README.md b/README.md index 6af44fcf..4a52e021 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,6 @@ The Java server library for the [App Store Server API](https://developer.apple.c 4. [Usage](#usage) 5. [Support](#support) -## ⚠️ Beta ⚠️ - -This software is currently in Beta testing. Therefore, it should only be used for testing purposes, like for the Sandbox environment. API signatures may change between releases and signature verification may receive security updates. - ## Installation #### Requirements @@ -20,7 +16,7 @@ This software is currently in Beta testing. Therefore, it should only be used fo ### Gradle ```groovy -implementation 'com.apple.itunes.storekit:app-store-server-library:0.2.0' +implementation 'com.apple.itunes.storekit:app-store-server-library:1.0.0' ``` @@ -29,7 +25,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:0.2.0' com.apple.itunes.storekit app-store-server-library - 0.2.0 + 1.0.0 ``` diff --git a/gradle.properties b/gradle.properties index 5a46420c..4424e04b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=0.2.0 +version=1.0.0 group=com.apple.itunes.storekit diff --git a/src/main/java/com/apple/itunes/storekit/client/AppStoreServerAPIClient.java b/src/main/java/com/apple/itunes/storekit/client/AppStoreServerAPIClient.java index 681c556f..c08739dc 100644 --- a/src/main/java/com/apple/itunes/storekit/client/AppStoreServerAPIClient.java +++ b/src/main/java/com/apple/itunes/storekit/client/AppStoreServerAPIClient.java @@ -44,7 +44,7 @@ public class AppStoreServerAPIClient { 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 USER_AGENT = "app-store-server-library/java/0.2.0"; + private static final String USER_AGENT = "app-store-server-library/java/1.0.0"; private static final MediaType JSON = MediaType.parse("application/json; charset=utf-8"); private final OkHttpClient httpClient;