Skip to content

Commit 2253964

Browse files
Merge pull request #97 from alexanderjordanbaker/v2.1.0
Release version 2.1.0
2 parents cd5c09c + 20fd9ae commit 2253964

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## Version 2.1.0
4+
- Incorporate changes for App Store Server API v1.11 and App Store Server Notifications v2.11 [https://github.com/apple/app-store-server-library-java/pull/94]
5+
- Add proxy authenticator support [https://github.com/apple/app-store-server-library-java/pull/93]
6+
- Various documentation and quality of life improvements, including contributions from @hakusai22
7+
38
## Version 2.0.0
49
- Incorporate changes for App Store Server API v1.10.1 [https://github.com/apple/app-store-server-library-java/pull/77]
510
- This change is a breaking change, as the datatype of the price field has changed from Integer to Long

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The Java server library for the [App Store Server API](https://developer.apple.c
1515

1616
### Gradle
1717
```groovy
18-
implementation 'com.apple.itunes.storekit:app-store-server-library:2.0.0'
18+
implementation 'com.apple.itunes.storekit:app-store-server-library:2.1.0'
1919
2020
```
2121

@@ -24,7 +24,7 @@ implementation 'com.apple.itunes.storekit:app-store-server-library:2.0.0'
2424
<dependency>
2525
<groupId>com.apple.itunes.storekit</groupId>
2626
<artifactId>app-store-server-library</artifactId>
27-
<version>2.0.0</version>
27+
<version>2.1.0</version>
2828
</dependency>
2929
```
3030

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=2.0.0
1+
version=2.1.0
22
group=com.apple.itunes.storekit

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class AppStoreServerAPIClient {
4646
private static final String PRODUCTION_URL = "https://api.storekit.itunes.apple.com";
4747
private static final String SANDBOX_URL = "https://api.storekit-sandbox.itunes.apple.com";
4848
private static final String LOCAL_TESTING_URL = "https://local-testing-base-url";
49-
private static final String USER_AGENT = "app-store-server-library/java/2.0.0";
49+
private static final String USER_AGENT = "app-store-server-library/java/2.1.0";
5050
private static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");
5151

5252
private final OkHttpClient httpClient;

0 commit comments

Comments
 (0)