Updated version

api-breakage
Morty Space 5 years ago
parent 7aeaad4528
commit fc9b8b0c12
  1. 3
      README.md
  2. 2
      src/cryptocom/exchange/__init__.py

@ -28,8 +28,9 @@ Exchange original API docs: [https://exchange-docs.crypto.com](https://exchange-
### Changelog
- **0.7.1** - fixed missing '.0' in order price and quantity (different in py3.7, py3.9)
- **0.7** - major changes, `Pair` -> `cro.pairs.CRO_USDT` moved to more complex structure so we can use round and server information about pairs.
- If you have errors, just use `await account.sync_pairs()` or `await exchange.sync_pairs()
- If you have errors, just use `await account.sync_pairs()` or `await exchange.sync_pairs()`
- Added rounding per pair, all floats will be with right precisions
- **0.6** - included changes from PR kudos to https://github.com/samueltayishere, fixed limit orders, fixed timeouts, fixed is_active order status
- **0.5.1** - added symbols YFI, BAND, fixed test with limit orders

@ -14,4 +14,4 @@ __all__ = [
'ApiError', 'ApiProvider'
]
__version__ = '0.7'
__version__ = '0.7.1'

Loading…
Cancel
Save