Skip to content

Feature version 11.0.1 #58

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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