Skip to content

Commit

Permalink
Release version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderjordanbaker committed May 7, 2024
1 parent cd5c09c commit 20fd9ae
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Version 2.1.0
- Incorporate changes for App Store Server API v1.11 and App Store Server Notifications v2.11 [https://github.com/apple/app-store-server-library-java/pull/94]
- Add proxy authenticator support [https://github.com/apple/app-store-server-library-java/pull/93]
- Various documentation and quality of life improvements, including contributions from @hakusai22

## Version 2.0.0
- Incorporate changes for App Store Server API v1.10.1 [https://github.com/apple/app-store-server-library-java/pull/77]
- This change is a breaking change, as the datatype of the price field has changed from Integer to Long
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:2.0.0'
implementation 'com.apple.itunes.storekit:app-store-server-library:2.1.0'
```

Expand All @@ -24,7 +24,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:2.0.0'
<dependency>
<groupId>com.apple.itunes.storekit</groupId>
<artifactId>app-store-server-library</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=2.0.0
version=2.1.0
group=com.apple.itunes.storekit
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,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 LOCAL_TESTING_URL = "https://local-testing-base-url";
private static final String USER_AGENT = "app-store-server-library/java/2.0.0";
private static final String USER_AGENT = "app-store-server-library/java/2.1.0";
private static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");

private final OkHttpClient httpClient;
Expand Down

0 comments on commit 20fd9ae

Please sign in to comment.