Skip to content

Commit ab4b4d3

Browse files
committed
1.0.1
1 parent 4bef3df commit ab4b4d3

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.0.1
2+
3+
## Fixed
4+
5+
- Fix required Python version
6+
17
# 1.0.0
28

39
## Added
@@ -11,7 +17,7 @@
1117
- Requests are now initialized with a dictionary of parameters(example on README)
1218
- The code and message of a Response can now be accessed from `response.code` and `response.message`
1319
- is_paid, is_refunded, is_canceled and is_authorized are now properties instead of methods
14-
20+
1521
## Fixed
1622

1723
- Correctly enforce abstract class

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-redsys"
3-
version = "1.0.0"
3+
version = "1.0.1"
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"
@@ -16,7 +16,7 @@ packages = [
1616
]
1717

1818
[tool.poetry.dependencies]
19-
python = "^3.9"
19+
python = "^3.6"
2020
pycryptodome = "^3.9.9"
2121

2222
[tool.poetry.dev-dependencies]

redsys/__init__.py

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

0 commit comments

Comments
 (0)