Skip to content

Commit

Permalink
Merge pull request apple#61 from alexanderjordanbaker/Version1
Browse files Browse the repository at this point in the history
Release 1.0
  • Loading branch information
alexanderjordanbaker authored Dec 18, 2023
2 parents 144cac8 + 1e01a11 commit 980fab2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
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

0 comments on commit 980fab2

Please sign in to comment.