Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.2.0 version #57

Merged
merged 1 commit into from
Nov 13, 2023
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
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## Version 0.2.0
- Significantly increase unit test coverage [#51]
- Add support for Xcode and LocalTesting environments [#49]
- Allow parsing unknown Enum values [#50]
- Add support for testing in Java 21 [#48]
- Add error codes from App Store Server API v1.9 [#43]
- Add new fields from App Store Server API v1.10 [#53]
- Fix private key parsing on Windows from @vpavic [#41]

## Version 0.1.3

- Add status field to Data [#35](https://github.com/apple/app-store-server-library-java/issues/35)
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.3'
implementation 'com.apple.itunes.storekit:app-store-server-library:0.2.0'

```

Expand All @@ -29,7 +29,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:0.1.3'
<dependency>
<groupId>com.apple.itunes.storekit</groupId>
<artifactId>app-store-server-library</artifactId>
<version>0.1.3</version>
<version>0.2.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.1.3
version=0.2.0
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.3";
private static final String USER_AGENT = "app-store-server-library/java/0.2.0";
private static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");

private final OkHttpClient httpClient;
Expand Down
Loading