Skip to content

Commit e4dbe76

Browse files
committed
Merge branch 'release/1.14.0'
2 parents e8c3f16 + 76a7ee8 commit e4dbe76

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+5554
-827
lines changed

.DS_Store

6 KB
Binary file not shown.

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ We're very happy to introduce yet another unique product: complete banking SDKs!
99
Now you can build even bigger and better apps and integrate them with your bank of the free! 🌈
1010

1111
Before you dive into this brand new SDK, please consider:
12-
- Checking out our new developer’s page [https://bunq.com/en/developer](https://bunq.com/en/developer) 🙌
13-
- Grabbing your production API key from the bunq app or generate a Sandbox API key using [Tinker](https://www.bunq.com/developer) 🗝
14-
- Visiting [together.bunq.com](https://together.bunq.com) where you can share your creations,
12+
- Learning how bunq works and what objects you will work with by reading [the intro to our API](https://github.com/bunq/doc/blob/develop/README.md) 🤓
13+
- Checking out [our developer portal](https://developer.bunq.com/) 🙌
14+
- Grabbing your Production API key from [our developer portal](https://developer.bunq.com/) or the bunq app 🗝
15+
- Generating a Sandbox API key using [our developer portal](https://developer.bunq.com/) or [Tinker](https://www.bunq.com/developer) 🗝
16+
- Visiting [our forum](https://together.bunq.com/t/api) where you can share your creations,
1517
questions and experience 🎤
1618

1719
Give us your feedback, create pull requests, build your very own bunq apps and most importantly:

assets/attachment.jpg

-45.8 KB
Binary file not shown.

assets/[email protected]

-18.5 KB
Binary file not shown.

assets/vader.png

232 KB
Loading

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.bunq.sdk'
2-
version '1.13.1'
2+
version '1.14.0'
33

44
apply plugin: 'java'
55
apply plugin: 'maven'
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-all.zip
12
distributionBase=GRADLE_USER_HOME
23
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-bin.zip
4-
zipStoreBase=GRADLE_USER_HOME
54
zipStorePath=wrapper/dists
5+
zipStoreBase=GRADLE_USER_HOME

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public enum BunqHeader {
1818
LANGUAGE("X-Bunq-Language", "en_US"),
1919
REGION("X-Bunq-Region", "nl_NL"),
2020
SERVER_SIGNATURE("X-Bunq-Server-Signature"),
21-
USER_AGENT("User-Agent", "bunq-sdk-java/1.13.1");
21+
USER_AGENT("User-Agent", "bunq-sdk-java/1.14.0");
2222

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

src/main/java/com/bunq/sdk/model/generated/endpoint/BancontactMerchantTransaction.java

-343
This file was deleted.

0 commit comments

Comments
 (0)