Skip to content

Commit b7f9edb

Browse files
authored
Merge pull request #44 from wepay/feature-version-2016-08-10
Feature version 2016 08 10
2 parents af014a2 + 73d975d commit b7f9edb

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2016-12-21
2+
* Released v7.0.0, updating API support to 2016-08-10
3+
* No other changes
4+
15
2016-11-14
26
* Released v6.1.0, updating API support to 2016-07-13
37
* Several changes to the auto_capture and auto_release params, read the API changelog at https://developer.wepay.com/general/change-log

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ WePay-Java-SDK
33

44
Note
55
================================
6-
This WePay-Java-SDK is for <a href = "https://www.wepay.com/developer/version/2016-06-22">WePay Api Version 2016-06-22</a>. The jar for the previous API versions can be found in the lib folder.
6+
This WePay-Java-SDK is for <a href = "https://www.wepay.com/developer/version/2016-08-10">WePay Api Version 2016-08-10</a>. The jar for the previous API versions can be found in the lib folder.
77

88
Building
99
================================

lib/wepay-2016-07-13.jar

71 KB
Binary file not shown.

lib/wepay.jar

-15.5 KB
Binary file not shown.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<groupId>com.wepay</groupId>
1010
<artifactId>wepay-java-sdk</artifactId>
11-
<version>6.1.0</version>
11+
<version>7.0.0</version>
1212

1313
<name>wepay-java-sdk</name>
1414
<description>WePay Java SDK</description>

src/main/java/com/wepay/net/WePayResource.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ protected static javax.net.ssl.HttpsURLConnection httpsConnect(String call, Stri
5454
connection.setDoInput(true);
5555
connection.setRequestMethod("POST");
5656
connection.setRequestProperty("Content-Type", "application/json");
57-
connection.setRequestProperty("Api-Version", "2016-07-13");
58-
connection.setRequestProperty("User-Agent", "WePay Java SDK v6.1.0");
57+
connection.setRequestProperty("Api-Version", "2016-08-10");
58+
connection.setRequestProperty("User-Agent", "WePay Java SDK v7.0.0");
5959
if (accessToken != null) {
6060
connection.setRequestProperty("Authorization", "Bearer " + accessToken);
6161
}

0 commit comments

Comments
 (0)