From fc9b8b0c12e8bbf76aefe239ca0486acabb7147e Mon Sep 17 00:00:00 2001 From: Morty Space Date: Wed, 4 Nov 2020 17:33:17 +0200 Subject: [PATCH] Updated version --- README.md | 3 ++- src/cryptocom/exchange/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f250efe..f8ad75f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/cryptocom/exchange/__init__.py b/src/cryptocom/exchange/__init__.py index 78718c9..f63f0a8 100644 --- a/src/cryptocom/exchange/__init__.py +++ b/src/cryptocom/exchange/__init__.py @@ -14,4 +14,4 @@ __all__ = [ 'ApiError', 'ApiProvider' ] -__version__ = '0.7' +__version__ = '0.7.1'