Skip to content

Commit

Permalink
Merge branch 'release/1.13.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvandegroes committed Mar 27, 2020
2 parents 9392452 + 81cde5a commit e8c3f16
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.bunq.sdk'
version '1.13.0'
version '1.13.1'

apply plugin: 'java'
apply plugin: 'maven'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/bunq/sdk/context/ApiEnvironmentType.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public enum ApiEnvironmentType {
SANDBOX(
"public-api.sandbox.bunq.com",
"v1",
"sha256/9Y+oZve6H+r17Kdn+lN5sT0ijgxLyDGIuQtUwLupawA="
"sha256/SEJfjAW74vHQmGe/lb9NwBjzAw5y7rpJH3UWpGE5q8A="
);

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/bunq/sdk/http/BunqHeader.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public enum BunqHeader {
LANGUAGE("X-Bunq-Language", "en_US"),
REGION("X-Bunq-Region", "nl_NL"),
SERVER_SIGNATURE("X-Bunq-Server-Signature"),
USER_AGENT("User-Agent", "bunq-sdk-java/1.13.0");
USER_AGENT("User-Agent", "bunq-sdk-java/1.13.1");

private static final String PREFIX = "X-Bunq-";

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/bunq/sdk/model/core/OauthAccessToken.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ public class OauthAccessToken extends BunqModel {
/**
* Token constants.
*/
protected static final String TOKEN_URI_FORMAT_SANDBOX = "https://api.oauth.bunq.com/v1/token?%s";
protected static final String TOKEN_URI_FORMAT_PRODUCTION = "https://api.oauth.sandbox.bunq.com/v1/token?%s";
protected static final String TOKEN_URI_FORMAT_SANDBOX = "https://api-oauth.sandbox.bunq.com/v1/token?%s";
protected static final String TOKEN_URI_FORMAT_PRODUCTION = "https://api.oauth.bunq.com/v1/token?%s";

/**
* Error constants.
Expand Down

0 comments on commit e8c3f16

Please sign in to comment.