Skip to content

Commit

Permalink
Feature version 11.0.1 (#58)
Browse files Browse the repository at this point in the history
* release version 11.0.1

* update jar

* updated changelog, license, and readme

* replaced old format binary with new format binary
  • Loading branch information
y2chaits authored Dec 14, 2018
1 parent 1394488 commit 682cf80
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2018-12-13
* Released v11.0.1
* Handled potential NullPointerExceptions
* Changed the default name of the Maven build artifact to include version info
* Handled potential error response serialization problem

2018-10-08
* Released v11.0.0, updating API support to 2018-10-03
* Added AccountFindData.start and AccountFindData.limit
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

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

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WePay-Java-SDK

Note
================================
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.
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.

Building
================================
Expand Down
Binary file added lib/wepay-java-sdk-11.0.1.jar
Binary file not shown.
Binary file removed lib/wepay.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>com.wepay</groupId>
<artifactId>wepay-java-sdk</artifactId>
<version>11.0.0</version>
<version>11.0.1</version>

<name>wepay-java-sdk</name>
<description>WePay Java SDK</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/wepay/net/WePayResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected static javax.net.ssl.HttpsURLConnection httpsConnect(String call, Head
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type", "application/json");
connection.setRequestProperty("Api-Version", "2018-10-03");
connection.setRequestProperty("User-Agent", "WePay Java SDK v11.0.0");
connection.setRequestProperty("User-Agent", "WePay Java SDK v11.0.1");

if (headerData != null) {
if (headerData.accessToken != null) {
Expand Down

0 comments on commit 682cf80

Please sign in to comment.