Skip to content

Commit 350f3f0

Browse files
2.0.0 fix #67
1 parent 6985fdc commit 350f3f0

File tree

7 files changed

+14
-6
lines changed

7 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.0.0 - 2023-11-23
2+
### Fix
3+
* Order price must be higher than the minimum price #67
4+
5+
### Update
6+
* Up requirements for exchanges-wrapper==1.4.0
7+
* Some minor improvements
8+
19
## 2.0.0rc8 - 2023-11-16
210
### Fix
311
* Handling of partially filled TP when Reverse hold

martin_binance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__author__ = "Jerry Fedorenko"
77
__copyright__ = "Copyright © 2021 Jerry Fedorenko aka VM"
88
__license__ = "MIT"
9-
__version__ = "2.0.0rc13"
9+
__version__ = "2.0.0"
1010
__maintainer__ = "Jerry Fedorenko"
1111
__contact__ = "https://github.com/DogsTailFarmer"
1212

martin_binance/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__author__ = "Jerry Fedorenko"
55
__copyright__ = "Copyright © 2021 Jerry Fedorenko aka VM"
66
__license__ = "MIT"
7-
__version__ = "2.0.0rc1"
7+
__version__ = "2.0.0"
88
__maintainer__ = "Jerry Fedorenko"
99
__contact__ = "https://github.com/DogsTailFarmer"
1010

martin_binance/executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__author__ = "Jerry Fedorenko"
55
__copyright__ = "Copyright © 2021 Jerry Fedorenko aka VM"
66
__license__ = "MIT"
7-
__version__ = "2.0.0rc13"
7+
__version__ = "2.0.0"
88
__maintainer__ = "Jerry Fedorenko"
99
__contact__ = 'https://github.com/DogsTailFarmer'
1010
##################################################################

martin_binance/margin_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__author__ = "Jerry Fedorenko"
55
__copyright__ = "Copyright © 2021 Jerry Fedorenko aka VM"
66
__license__ = "MIT"
7-
__version__ = "2.0.0rc11"
7+
__version__ = "2.0.0"
88
__maintainer__ = "Jerry Fedorenko"
99
__contact__ = "https://github.com/DogsTailFarmer"
1010

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dynamic = ["version", "description"]
1717
requires-python = ">=3.8"
1818

1919
dependencies = [
20-
"exchanges-wrapper>=1.4.0rc6",
20+
"exchanges-wrapper==1.4.0",
2121
"margin-strategy-sdk==0.0.11",
2222
"jsonpickle==3.0.2",
2323
"psutil==5.9.6",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
exchanges-wrapper>=1.4.0rc6
1+
exchanges-wrapper==1.4.0
22
margin-strategy-sdk==0.0.11
33
jsonpickle==3.0.2
44
psutil==5.9.6

0 commit comments

Comments
 (0)