Skip to content

Commit

Permalink
Release version 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderjordanbaker committed Sep 14, 2023
1 parent b3fb34b commit 54ccee2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Version 0.1.3

- Add status field to Data [#35](https://github.com/apple/app-store-server-library-java/issues/35)
- Publish JavaDocs

## Version 0.1.2

- Make SignedDataVerifier::decodeSignedObject protected
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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.1.2'
implementation 'com.apple.itunes.storekit:app-store-server-library:0.1.3'
```

Expand All @@ -29,7 +29,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:0.1.2'
<dependency>
<groupId>com.apple.itunes.storekit</groupId>
<artifactId>app-store-server-library</artifactId>
<version>0.1.2</version>
<version>0.1.3</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.1.2
version=0.1.3
group=com.apple.itunes.storekit
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,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.1.0";
private static final String USER_AGENT = "app-store-server-library/java/0.1.3";
private static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");

private final OkHttpClient httpClient;
Expand Down

0 comments on commit 54ccee2

Please sign in to comment.