Skip to content

Commit

Permalink
Update to v1.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
sammchardy committed Feb 21, 2023
1 parent 8fc2fb4 commit 95ec456
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 7 deletions.
6 changes: 3 additions & 3 deletions PYPIREADME.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
=================================
Welcome to python-binance v1.0.16
Welcome to python-binance v1.0.17
=================================

Updated 9th Apr 2022
Updated 21st Feb 2023

.. image:: https://img.shields.io/pypi/v/python-binance.svg
:target: https://pypi.python.org/pypi/python-binance
Expand Down Expand Up @@ -52,7 +52,7 @@ Features
- Implementation of all General, Market Data and Account endpoints.
- Asyncio implementation
- Testnet support for Spot, Futures and Vanilla Options
- Simple handling of authentication
- Simple handling of authentication include RSA keys
- No need to generate timestamps yourself, the wrapper does it for you
- Response exception handling
- Websocket handling with reconnection and multiplexed connections
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
=================================
Welcome to python-binance v1.0.16
Welcome to python-binance v1.0.17
=================================

Updated 9th Apr 2022
Updated 21st Feb 2023

.. image:: https://img.shields.io/pypi/v/python-binance.svg
:target: https://pypi.python.org/pypi/python-binance
Expand Down Expand Up @@ -52,7 +52,7 @@ Features
- Implementation of all General, Market Data and Account endpoints.
- Asyncio implementation
- Testnet support for Spot, Futures and Vanilla Options
- Simple handling of authentication
- Simple handling of authentication include RSA keys
- No need to generate timestamps yourself, the wrapper does it for you
- Response exception handling
- Websocket handling with reconnection and multiplexed connections
Expand Down
2 changes: 1 addition & 1 deletion binance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""

__version__ = '1.0.16'
__version__ = "1.0.17"

from binance.client import Client, AsyncClient # noqa
from binance.depthcache import DepthCacheManager, OptionsDepthCacheManager, ThreadedDepthCacheManager # noqa
Expand Down
28 changes: 28 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
Changelog
=========

v1.0.17 - 2023-02-21
^^^^^^^^^^^^^^^^^^^^

**Added**

- RSA key authentication
- Support for api1, api2, api3, api4 base endpoints
- binance.us staking endpoints
- Options ticker by expiration socket
- Staking endpoints
- Pay and Convert endpoints
- Futures index info endpoint
- Open OCO Orders endpoint
- Param to pass session params to aiohttp.ClientSession


**Updated**

- Some margin endpoint versions
- Support testnet for more streams

**Fixed**

- Indefinite websocket reconnect loop
- Crash on parsing code from some errors

**Added**

v1.0.16 - 2022-04-09
^^^^^^^^^^^^^^^^^^^^

Expand Down

0 comments on commit 95ec456

Please sign in to comment.