Skip to content

Commit aa2b8da

Browse files
committed
Minor version release
1 parent 109ff7b commit aa2b8da

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.1.0
2+
3+
- Minor release
4+
- Fixed: One step credit card example
5+
16
# 1.0.11
27

38
- Added: new endpoint (one step)

examples/create_charge_onestep.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}],
1818
'payment': {
1919
'banking_billet': {
20-
'expire_at': '2016-12-12',
20+
'expire_at': '2021-12-12',
2121
'customer': {
2222
'name': "Gorbadoc Oldbuck",
2323
'email': "oldbuck@gerencianet.com.br",

examples/create_charge_onestep_CreditCard.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# encoding: utf-8
2-
2+
33
from gerencianet import Gerencianet
44
from credentials import CREDENTIALS
5-
65
gn = Gerencianet(CREDENTIALS)
7-
6+
87
body = {
98
'items': [{
109
'name': "Product 1",
@@ -37,6 +36,6 @@
3736
}
3837
}
3938
}
40-
39+
4140
response = gn.create_charge_onestep(params=None, body=body)
42-
print(response)
41+
print(response)

gerencianet/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# encoding: utf-8
22

3-
VERSION = '1.0.11'
3+
VERSION = '1.1.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
setup(
1818
name='gerencianet',
1919

20-
version='1.0.10',
20+
version='1.1.0',
2121

2222
description='Module for integration with Gerencianet API',
2323
long_description=long_description,

0 commit comments

Comments
 (0)