Skip to content

Commit

Permalink
Merge branch 'develop' into fix_monetary_account_joint_retrieval_bunq…
Browse files Browse the repository at this point in the history
…/sdk_java#45
  • Loading branch information
OGKevin authored Jun 1, 2018
2 parents d8ad5f1 + 159490d commit a709aa6
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [0.13.1](https://github.com/bunq/sdk_java/tree/0.13.1)

[Full Changelog](https://github.com/bunq/sdk_java/compare/0.13.0...0.13.1)

**Closed issues:**

- Move to new sandbox [\#89](https://github.com/bunq/sdk_java/issues/89)


**Merged pull requests:**

- Changed sandbox url and pinned key. [\#92](https://github.com/bunq/sdk_java/pull/92) ([OGKevin](https://github.com/OGKevin))

## [0.13.0](https://github.com/bunq/sdk_java/tree/0.13.0) [(2017-12-21)](https://github.com/bunq/sdk_java/tree/0.13.0)

[Full Changelog](https://github.com/bunq/sdk_java/compare/0.12.4...0.13.0)
Expand Down
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 '0.13.0'
version '0.13.1'

apply plugin: 'java'
apply plugin: 'maven'
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/com/bunq/sdk/http/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public class ApiClient {
/**
* Prefix for bunq's own headers.
*/
private static final String USER_AGENT_BUNQ = "bunq-sdk-java/0.13.0";
public static final String LANGUAGE_EN_US = "en_US";
public static final String REGION_NL_NL = "nl_NL";
public static final String GEOLOCATION_ZERO = "0 0 0 0 000";
private static final String USER_AGENT_BUNQ = "bunq-sdk-java/0.13.1";
private static final String LANGUAGE_EN_US = "en_US";
private static final String REGION_NL_NL = "nl_NL";
private static final String GEOLOCATION_ZERO = "0 0 0 0 000";
private static final String SCHEME_HTTPS = "https";

/**
Expand Down

0 comments on commit a709aa6

Please sign in to comment.