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
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'

```

Expand All @@ -29,7 +25,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:0.2.0'
<dependency>
<groupId>com.apple.itunes.storekit</groupId>
<artifactId>app-store-server-library</artifactId>
<version>0.2.0</version>
<version>1.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=0.2.0
version=1.0.0
group=com.apple.itunes.storekit
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down