Skip to content

Commit 980fab2

Browse files
Merge pull request #61 from alexanderjordanbaker/Version1
Release 1.0
2 parents 144cac8 + 1e01a11 commit 980fab2

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

CHANGELOG

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

3+
## Version 1.0.0
4+
- Switch from GSON to Jackson for parsing [#58]
5+
- Rename Status to VerificationStatus [#59]
6+
- Add message to APIException and update JavaDocs [#60]
7+
38
## Version 0.2.0
49
- Significantly increase unit test coverage [#51]
510
- Add support for Xcode and LocalTesting environments [#49]

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ The Java server library for the [App Store Server API](https://developer.apple.c
88
4. [Usage](#usage)
99
5. [Support](#support)
1010

11-
## ⚠️ Beta ⚠️
12-
13-
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.
14-
1511
## Installation
1612

1713
#### Requirements
@@ -20,7 +16,7 @@ This software is currently in Beta testing. Therefore, it should only be used fo
2016

2117
### Gradle
2218
```groovy
23-
implementation 'com.apple.itunes.storekit:app-store-server-library:0.2.0'
19+
implementation 'com.apple.itunes.storekit:app-store-server-library:1.0.0'
2420
2521
```
2622

@@ -29,7 +25,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:0.2.0'
2925
<dependency>
3026
<groupId>com.apple.itunes.storekit</groupId>
3127
<artifactId>app-store-server-library</artifactId>
32-
<version>0.2.0</version>
28+
<version>1.0.0</version>
3329
</dependency>
3430
```
3531

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=0.2.0
1+
version=1.0.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
@@ -44,7 +44,7 @@
4444
public class AppStoreServerAPIClient {
4545
private static final String PRODUCTION_URL = "https://api.storekit.itunes.apple.com";
4646
private static final String SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com";
47-
private static final String USER_AGENT = "app-store-server-library/java/0.2.0";
47+
private static final String USER_AGENT = "app-store-server-library/java/1.0.0";
4848
private static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");
4949

5050
private final OkHttpClient httpClient;

0 commit comments

Comments
 (0)