Skip to content

Commit 0c38080

Browse files
Merge pull request #57 from alexanderjordanbaker/v0.2.0
Release 0.2.0 version
2 parents aa0ca10 + a4aecee commit 0c38080

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

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

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This software is currently in Beta testing. Therefore, it should only be used fo
2020

2121
### Gradle
2222
```groovy
23-
implementation 'com.apple.itunes.storekit:app-store-server-library:0.1.3'
23+
implementation 'com.apple.itunes.storekit:app-store-server-library:0.2.0'
2424
2525
```
2626

@@ -29,7 +29,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:0.1.3'
2929
<dependency>
3030
<groupId>com.apple.itunes.storekit</groupId>
3131
<artifactId>app-store-server-library</artifactId>
32-
<version>0.1.3</version>
32+
<version>0.2.0</version>
3333
</dependency>
3434
```
3535

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=0.1.3
1+
version=0.2.0
22
group=com.apple.itunes.storekit

src/main/java/com/apple/itunes/storekit/client/AppStoreServerAPIClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
public class AppStoreServerAPIClient {
4242
private static final String PRODUCTION_URL = "https://api.storekit.itunes.apple.com";
4343
private static final String SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com";
44-
private static final String USER_AGENT = "app-store-server-library/java/0.1.3";
44+
private static final String USER_AGENT = "app-store-server-library/java/0.2.0";
4545
private static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");
4646

4747
private final OkHttpClient httpClient;

0 commit comments

Comments
 (0)