From 59e3c8045fa13ca0ba038d4a2e0481212b3b665f Mon Sep 17 00:00:00 2001 From: Sam McHardy Date: Sat, 9 Apr 2022 10:11:36 +0700 Subject: [PATCH] Update to v1.0.16 --- PYPIREADME.rst | 4 ++-- README.rst | 4 ++-- binance/__init__.py | 2 +- docs/changelog.rst | 23 +++++++++++++++++++++++ 4 files changed, 28 insertions(+), 5 deletions(-) diff --git a/PYPIREADME.rst b/PYPIREADME.rst index 92ee1ce5..30f9c6d2 100644 --- a/PYPIREADME.rst +++ b/PYPIREADME.rst @@ -1,8 +1,8 @@ ================================= -Welcome to python-binance v1.0.15 +Welcome to python-binance v1.0.16 ================================= -Updated 27th Sept 2021 +Updated 9th Apr 2022 .. image:: https://img.shields.io/pypi/v/python-binance.svg :target: https://pypi.python.org/pypi/python-binance diff --git a/README.rst b/README.rst index bfbd96d8..77862206 100755 --- a/README.rst +++ b/README.rst @@ -1,8 +1,8 @@ ================================= -Welcome to python-binance v1.0.15 +Welcome to python-binance v1.0.16 ================================= -Updated 27th Sept 2021 +Updated 9th Apr 2022 .. image:: https://img.shields.io/pypi/v/python-binance.svg :target: https://pypi.python.org/pypi/python-binance diff --git a/binance/__init__.py b/binance/__init__.py index 0eb275ce..a1dfca0c 100755 --- a/binance/__init__.py +++ b/binance/__init__.py @@ -4,7 +4,7 @@ """ -__version__ = '1.0.15' +__version__ = '1.0.16' from binance.client import Client, AsyncClient # noqa from binance.depthcache import DepthCacheManager, OptionsDepthCacheManager, ThreadedDepthCacheManager # noqa diff --git a/docs/changelog.rst b/docs/changelog.rst index 579575a7..9c7eca10 100755 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,29 @@ Changelog ========= +v1.0.16 - 2022-04-09 +^^^^^^^^^^^^^^^^^^^^ + +**Added** + +- pass limit param to all kline functions +- increase default for kline functions from 500 to 1000 +- add HistoricalKlinesType.FUTURES_COIN as option for kline functions +- testnet URL for coin_futures_socket + +**Updated** + +- round_step_size more accurate + +**Fixed** + +- remove deprecated loop param +- websockets unpinned +- hanging websockets in exiting state +- check start_ts after end_ts for klines +- multi assets margin params + + v1.0.15 - 2021-09-27 ^^^^^^^^^^^^^^^^^^^^