File tree Expand file tree Collapse file tree 3 files changed +36
-2
lines changed
Expand file tree Collapse file tree 3 files changed +36
-2
lines changed Original file line number Diff line number Diff line change 1+ # 1.0.0
2+
3+ ## Added
4+
5+ - Use mypy to type codebase
6+ - Request and Response tests
7+ - Use @staticmethod where necessary
8+
9+ ## Changed
10+
11+ - Requests are now initialized with a dictionary of parameters(example on README)
12+ - The code and message of a Response can now be accessed from ` response.code ` and ` response.message `
13+ - is_paid, is_refunded, is_canceled and is_authorized are now properties instead of methods
14+
15+ ## Fixed
16+
17+ - Correctly enforce abstract class
18+
19+ # 0.4.0
20+
21+ ## Added
22+
23+ - Client tests
24+
25+ ## Changed
26+
27+ - Replaced pycrypto(which is abandoned) by PyCryptodome
28+ - Migrated all the constants to a single file(currencies, languages and transactions)
29+ - Drop compatibility with Python 2.x
30+ - Code cleanup
31+
32+ # 0.3.0
33+
34+ - Initial release
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " python-redsys"
3- version = " 0.4 .0"
3+ version = " 1.0 .0"
44description = " A simple, clean and less dependant client to handle payments through Redsys."
55authors = [" Andrés Reverón Molina <andres@reveronmolina.me>" , " David Díaz <d.diazp@gmail.com>" ]
66license = " MIT"
Original file line number Diff line number Diff line change 1- __version__ = "0.4 .0"
1+ __version__ = "1.0 .0"
22__version_info__ = tuple (
33 [
44 int (num ) if num .isdigit () else num
You can’t perform that action at this time.
0 commit comments