Skip to content

Commit 682cf80

Browse files
authored
Feature version 11.0.1 (#58)
* release version 11.0.1 * update jar * updated changelog, license, and readme * replaced old format binary with new format binary
1 parent 1394488 commit 682cf80

File tree

7 files changed

+10
-4
lines changed

7 files changed

+10
-4
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2018-12-13
2+
* Released v11.0.1
3+
* Handled potential NullPointerExceptions
4+
* Changed the default name of the Maven build artifact to include version info
5+
* Handled potential error response serialization problem
6+
17
2018-10-08
28
* Released v11.0.0, updating API support to 2018-10-03
39
* Added AccountFindData.start and AccountFindData.limit

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (C) 2013, WePay, Inc. <api at wepay dot com>
3+
Copyright (C) 2018, WePay, Inc. <api at wepay dot com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

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 WePay API Version 2018-10-03. The jars for the previous API versions can be found in the lib folder. From Dec 5, 2018, the default jar name will include the SDK version.
6+
This WePay-Java-SDK is for WePay API Version 2018-10-03. The jars for the previous API versions can be found in the lib folder. From Dec 13, 2018, the default jar name will include the SDK version.
77

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

lib/wepay-java-sdk-11.0.1.jar

79 KB
Binary file not shown.

lib/wepay.jar

-347 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>11.0.0</version>
11+
<version>11.0.1</version>
1212

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ protected static javax.net.ssl.HttpsURLConnection httpsConnect(String call, Head
6060
connection.setRequestMethod("POST");
6161
connection.setRequestProperty("Content-Type", "application/json");
6262
connection.setRequestProperty("Api-Version", "2018-10-03");
63-
connection.setRequestProperty("User-Agent", "WePay Java SDK v11.0.0");
63+
connection.setRequestProperty("User-Agent", "WePay Java SDK v11.0.1");
6464

6565
if (headerData != null) {
6666
if (headerData.accessToken != null) {

0 commit comments

Comments
 (0)