diff --git a/README.rst b/README.rst index d194a00c..b5386ee0 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ ================================ -Welcome to python-binance v0.4.0 +Welcome to python-binance v0.4.1 ================================ .. image:: https://img.shields.io/pypi/v/python-binance.svg @@ -38,11 +38,10 @@ Features - Simple handling of authentication - No need to generate timestamps yourself, the wrapper does it for you - Response exception handling -- Websocket handling +- Websocket handling with reconnection - Symbol Depth Cache - Withdraw functionality - Deposit addresses -- Order parameter validation based on Trade Rules Quick Start ----------- diff --git a/docs/changelog.rst b/docs/changelog.rst index e135eea0..da4f399e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,13 @@ Changelog ========= +v0.4.1 - 2017-11-24 +^^^^^^^^^^^^^^^^^^^ + +**Added** + +- Reconnecting websockets, automatic retry on disconnect + v0.4.0 - 2017-11-19 ^^^^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index 880fb845..0a72015b 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='python-binance', - version='0.4.0', + version='0.4.1', packages=['binance'], description='Binance REST API python implementation', url='https://github.com/sammchardy/python-binance',