File tree Expand file tree Collapse file tree 5 files changed +49
-3
lines changed
Expand file tree Collapse file tree 5 files changed +49
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1- 0.12.3
1+ 0.12.4
Original file line number Diff line number Diff 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'
Original file line number Diff line number Diff line change 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 ,
You can’t perform that action at this time.
0 commit comments