Skip to content

Commit a20ee31

Browse files
committed
1.0.0
1 parent bfc563e commit a20ee31

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-redsys"
3-
version = "0.4.0"
3+
version = "1.0.0"
44
description = "A simple, clean and less dependant client to handle payments through Redsys."
55
authors = ["Andrés Reverón Molina <[email protected]>", "David Díaz <[email protected]>"]
66
license = "MIT"

redsys/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.4.0"
1+
__version__ = "1.0.0"
22
__version_info__ = tuple(
33
[
44
int(num) if num.isdigit() else num

0 commit comments

Comments
 (0)