Skip to content

Commit 0166994

Browse files
author
Kevin Hellemun
committed
Merge branch 'hotfix/0.13.1'
2 parents c043e45 + 16f5ff9 commit 0166994

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log
22

3+
## [0.13.1](https://github.com/bunq/sdk_java/tree/0.13.1)
4+
5+
[Full Changelog](https://github.com/bunq/sdk_java/compare/0.13.0...0.13.1)
6+
7+
**Closed issues:**
8+
9+
- Move to new sandbox [\#89](https://github.com/bunq/sdk_java/issues/89)
10+
11+
12+
**Merged pull requests:**
13+
14+
- Changed sandbox url and pinned key. [\#92](https://github.com/bunq/sdk_java/pull/92) ([OGKevin](https://github.com/OGKevin))
15+
316
## [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)
417

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

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.bunq.sdk'
2-
version '0.13.0'
2+
version '0.13.1'
33

44
apply plugin: 'java'
55
apply plugin: 'maven'

src/main/java/com/bunq/sdk/context/ApiEnvironmentType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
public enum ApiEnvironmentType {
77

88
PRODUCTION("api.bunq.com", "v1"),
9-
SANDBOX("sandbox.public.api.bunq.com", "v1");
9+
SANDBOX("public-api.sandbox.bunq.com", "v1");
1010

1111
/**
1212
* Base URI of each given environment.

src/main/java/com/bunq/sdk/http/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public class ApiClient {
9090
/**
9191
* Prefix for bunq's own headers.
9292
*/
93-
private static final String USER_AGENT_BUNQ = "bunq-sdk-java/0.13.0";
93+
private static final String USER_AGENT_BUNQ = "bunq-sdk-java/0.13.1";
9494
private static final String LANGUAGE_EN_US = "en_US";
9595
private static final String REGION_NL_NL = "nl_NL";
9696
private static final String GEOLOCATION_ZERO = "0 0 0 0 000";
@@ -99,7 +99,7 @@ public class ApiClient {
9999
/**
100100
* Pinned keys.
101101
*/
102-
private static final String PINNED_KEY_SANDBOX = "sha256/MU13KqZt0UuH2FWgIWlTZOwpXYyqa1gnBMIzKqHNMRg=";
102+
private static final String PINNED_KEY_SANDBOX = "sha256/GhNvDokiMyXzhGft+xXWFGchUmmh8R5dQEnO4xu81NY=";
103103
private static final String PINNED_KEY_PRODUCTION = "sha256/nI/T/sDfioCBHB5mVppDPyLi2HXYanwk2arpZuHLOu0=";
104104

105105
/**

0 commit comments

Comments
 (0)