Skip to content

Commit a086274

Browse files
author
Kevin Hellemun
committed
Merge tag '0.12.4' into develop
Release 0.12.4 0.12.4
2 parents 75e88d0 + 3853b32 commit a086274

File tree

5 files changed

+49
-3
lines changed

5 files changed

+49
-3
lines changed

.zappr.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# this is how you configure zappr
2+
# a more exhaustive description is at
3+
# https://zappr.readthedocs.io/en/latest/setup
4+
5+
# uncomment this if you want to change anything
6+
# approvals:
7+
# by default, an approval is the thumbs up emoji only: ^:\\+1:$
8+
# uncomment this line to change the approval pattern to "lgtm" at the beginning of the comment
9+
# pattern: "^lgtm"
10+
11+
# by default, every pull request requires two approvals
12+
# uncomment this line to change it to three
13+
# minimum: 3
14+
15+
# by default, the pull request opener can approve its own pull request
16+
# uncomment this line to ignore approvals from the pull request opener
17+
# (there is also `last_committer` and `both`)
18+
# ignore: pr_opener
19+
20+
# by default, zappr counts everyone as a valid approver
21+
# uncomment these lines to change it to only collaborators
22+
# (you can also specify `orgs` and `users` and define `groups`)
23+
# from:
24+
# collaborators: true

CHANGELOG.md

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

3+
## [0.12.4](https://github.com/bunq/sdk_python/tree/0.12.4) (2017-12-21)
4+
[Full Changelog](https://github.com/bunq/sdk_python/compare/0.12.3...0.12.4)
5+
6+
**Implemented enhancements:**
7+
8+
- Make sure received signatures headers are correctly cased [\#51](https://github.com/bunq/sdk_python/issues/51)
9+
- Introduce from\_json method  [\#50](https://github.com/bunq/sdk_python/issues/50)
10+
- Return base class from createFromJsonString [\#49](https://github.com/bunq/sdk_python/issues/49)
11+
- CHANGELOG.md is empty [\#46](https://github.com/bunq/sdk_python/issues/46)
12+
- Improve decoder to recognise child object [\#42](https://github.com/bunq/sdk_python/issues/42)
13+
14+
**Closed issues:**
15+
16+
- Python doesn't want CamelCase [\#45](https://github.com/bunq/sdk_python/issues/45)
17+
18+
**Merged pull requests:**
19+
20+
- Feature/make sure headers are correctly cased bunq/sdk python\#51 [\#57](https://github.com/bunq/sdk_python/pull/57) ([OGKevin](https://github.com/OGKevin))
21+
- Feature/improve decoder bunq/sdk python\#42 [\#56](https://github.com/bunq/sdk_python/pull/56) ([OGKevin](https://github.com/OGKevin))
22+
- Renamed camelCase methods. \(bunq/sdk\_python\#45\) [\#48](https://github.com/bunq/sdk_python/pull/48) ([OGKevin](https://github.com/OGKevin))
23+
- Generated CHANGELOG.md :clap:. \(bunq/sdk\_python\#46\) [\#47](https://github.com/bunq/sdk_python/pull/47) ([OGKevin](https://github.com/OGKevin))
24+
325
## [0.12.3](https://github.com/bunq/sdk_python/tree/0.12.3) (2017-11-15)
426
[Full Changelog](https://github.com/bunq/sdk_python/compare/0.12.2...0.12.3)
527

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.3
1+
0.12.4

bunq/sdk/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class ApiClient(object):
4141
HEADER_AUTHENTICATION = 'X-Bunq-Client-Authentication'
4242

4343
# Default header values
44-
_USER_AGENT_BUNQ = 'bunq-sdk-python/0.12.3'
44+
_USER_AGENT_BUNQ = 'bunq-sdk-python/0.12.4'
4545
_GEOLOCATION_ZERO = '0 0 0 0 NL'
4646
_LANGUAGE_EN_US = 'en_US'
4747
_REGION_NL_NL = 'nl_NL'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# Versions should comply with PEP440. For a discussion on single-sourcing
2525
# the version across setup.py and the project code, see
2626
# https://packaging.python.org/en/latest/single_source_version.html
27-
version='0.12.3',
27+
version='0.12.4',
2828

2929
description='bunq Python SDK',
3030
long_description=long_description,

0 commit comments

Comments
 (0)