Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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:4.0.0'
implementation 'com.apple.itunes.storekit:app-store-server-library:5.0.0'

```

Expand All @@ -24,7 +24,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:4.0.0'
<dependency>
<groupId>com.apple.itunes.storekit</groupId>
<artifactId>app-store-server-library</artifactId>
<version>4.0.0</version>
<version>5.0.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=4.0.0
version=5.0.0
group=com.apple.itunes.storekit
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
Loading