Skip to content

Commit a67ca11

Browse files
author
Kevin Hellemun
committed
Merge tag '0.13.0' into develop
Release 0.13.0
2 parents de76034 + 92f406f commit a67ca11

File tree

4 files changed

+52
-4
lines changed

4 files changed

+52
-4
lines changed

.idea/.idea.BunqSdk/.idea/contentModel.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BunqSdk/BunqSdk.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageId>Bunq.Sdk</PackageId>
1111
</PropertyGroup>
1212
<PropertyGroup>
13-
<VersionPrefix>0.12.4.0</VersionPrefix>
13+
<VersionPrefix>0.13.0.0</VersionPrefix>
1414
<VersionSuffix>beta</VersionSuffix>
1515
</PropertyGroup>
1616
<PropertyGroup>

BunqSdk/Http/ApiClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class ApiClient
6262
/// Values for the default headers
6363
/// </summary>
6464
private const string CACHE_CONTROL_NONE = "no-cache";
65-
private const string USER_AGENT_BUNQ = "bunq-sdk-csharp/0.12.4.0-beta";
65+
private const string USER_AGENT_BUNQ = "bunq-sdk-csharp/0.13.0.0-beta";
6666
private const string LANGUAGE_EN_US = "en_US";
6767
private const string REGION_NL_NL = "nl_NL";
6868
private const string GEOLOCATION_ZERO = "0 0 0 0 NL";

CHANGELOG.md

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# Change Log
22

3+
## [0.13.0](https://github.com/bunq/sdk_csharp/tree/0.13.0) (2018-03-20)
4+
5+
[Full Changelog](https://github.com/bunq/sdk_csharp/compare/0.12.4...0.13.0)
6+
7+
**Implemented enhancements:**
8+
9+
- Add zappr integration for better quality control  [\#66](https://github.com/bunq/sdk_csharp/issues/66)
10+
- Add more information to templates. [\#64](https://github.com/bunq/sdk_csharp/issues/64)
11+
- Add response id to error messages from failed requests  [\#63](https://github.com/bunq/sdk_csharp/issues/63)
12+
- Add installation instructions to README.md [\#61](https://github.com/bunq/sdk_csharp/issues/61)
13+
14+
**Fixed bugs:**
15+
16+
- Token request ideal is missing id attribute in response. [\#76](https://github.com/bunq/sdk_csharp/issues/76)
17+
- Field ID is missing from MasterCardAction [\#52](https://github.com/bunq/sdk_csharp/issues/52)
18+
- TokenQrRequestIdeal returns the wrong type [\#51](https://github.com/bunq/sdk_csharp/issues/51)
19+
20+
**Closed issues:**
21+
22+
- Bunq update 7 [\#83](https://github.com/bunq/sdk_csharp/issues/83)
23+
24+
**Merged pull requests:**
25+
26+
- Bunq update 7 [\#84](https://github.com/bunq/sdk_csharp/pull/84) ([OGKevin](https://github.com/OGKevin))
27+
- Regenerate code for release [\#82](https://github.com/bunq/sdk_csharp/pull/82) ([OGKevin](https://github.com/OGKevin))
28+
- Regenerated code with correct object types. \(bunq/sdk\_csharp\#51\) [\#79](https://github.com/bunq/sdk_csharp/pull/79) ([OGKevin](https://github.com/OGKevin))
29+
- Added missing field id for TokenQrRequestIdeal. \(bunq/sdk\_csharp\#76\) [\#78](https://github.com/bunq/sdk_csharp/pull/78) ([OGKevin](https://github.com/OGKevin))
30+
- Added missing id field from mastercard action. \(bunq/sdk\_csharp\#52\) [\#74](https://github.com/bunq/sdk_csharp/pull/74) ([OGKevin](https://github.com/OGKevin))
31+
- \(bunq/sdk\_csharp\#63\) add response id to failed request [\#73](https://github.com/bunq/sdk_csharp/pull/73) ([OGKevin](https://github.com/OGKevin))
32+
- Configure Zappr [\#67](https://github.com/bunq/sdk_csharp/pull/67) ([OGKevin](https://github.com/OGKevin))
33+
- Improve issue and pr template. \(bunq/sdk\_csharp\#64\) [\#65](https://github.com/bunq/sdk_csharp/pull/65) ([OGKevin](https://github.com/OGKevin))
34+
- Added installation instructions to README.md. \(bunq/sdk\_csharp\#61\) [\#62](https://github.com/bunq/sdk_csharp/pull/62) ([OGKevin](https://github.com/OGKevin))
35+
336
## [0.12.4](https://github.com/bunq/sdk_csharp/tree/0.12.4) (2017-12-21)
437
[Full Changelog](https://github.com/bunq/sdk_csharp/compare/0.12.3...0.12.4)
538

@@ -10,16 +43,16 @@
1043
- Return base class from createFromJsonString [\#48](https://github.com/bunq/sdk_csharp/issues/48)
1144
- CHANGELOG.md is empty [\#46](https://github.com/bunq/sdk_csharp/issues/46)
1245
- Improve decoder to recognise child objects [\#43](https://github.com/bunq/sdk_csharp/issues/43)
46+
- Generated CHANGELOG.md :clap:. \(bunq/sdk\_csharp\#46\) [\#47](https://github.com/bunq/sdk_csharp/pull/47) ([OGKevin](https://github.com/OGKevin))
1347

1448
**Closed issues:**
1549

1650
- Payment example doesn't work without a name for the pointer [\#54](https://github.com/bunq/sdk_csharp/issues/54)
1751

1852
**Merged pull requests:**
1953

20-
- Insure that headers are correctly cased before signature verification… [\#59](https://github.com/bunq/sdk_csharp/pull/59) ([OGKevin](https://github.com/OGKevin))
54+
- Ensure that headers are correctly cased before signature verification… [\#59](https://github.com/bunq/sdk_csharp/pull/59) ([OGKevin](https://github.com/OGKevin))
2155
- Improve decoder bunq/sdk csharp\#43 [\#57](https://github.com/bunq/sdk_csharp/pull/57) ([OGKevin](https://github.com/OGKevin))
22-
- Generated CHANGELOG.md :clap:. \(bunq/sdk\_csharp\#46\) [\#47](https://github.com/bunq/sdk_csharp/pull/47) ([OGKevin](https://github.com/OGKevin))
2356

2457
## [0.12.3](https://github.com/bunq/sdk_csharp/tree/0.12.3) (2017-11-15)
2558
[Full Changelog](https://github.com/bunq/sdk_csharp/compare/0.12.2...0.12.3)

0 commit comments

Comments
 (0)