Skip to content

Commit 95ec456

Browse files
author
Sam McHardy
committed
Update to v1.0.17
1 parent 8fc2fb4 commit 95ec456

File tree

4 files changed

+35
-7
lines changed

4 files changed

+35
-7
lines changed

PYPIREADME.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
=================================
2-
Welcome to python-binance v1.0.16
2+
Welcome to python-binance v1.0.17
33
=================================
44

5-
Updated 9th Apr 2022
5+
Updated 21st Feb 2023
66

77
.. image:: https://img.shields.io/pypi/v/python-binance.svg
88
:target: https://pypi.python.org/pypi/python-binance
@@ -52,7 +52,7 @@ Features
5252
- Implementation of all General, Market Data and Account endpoints.
5353
- Asyncio implementation
5454
- Testnet support for Spot, Futures and Vanilla Options
55-
- Simple handling of authentication
55+
- Simple handling of authentication include RSA keys
5656
- No need to generate timestamps yourself, the wrapper does it for you
5757
- Response exception handling
5858
- Websocket handling with reconnection and multiplexed connections

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
=================================
2-
Welcome to python-binance v1.0.16
2+
Welcome to python-binance v1.0.17
33
=================================
44

5-
Updated 9th Apr 2022
5+
Updated 21st Feb 2023
66

77
.. image:: https://img.shields.io/pypi/v/python-binance.svg
88
:target: https://pypi.python.org/pypi/python-binance
@@ -52,7 +52,7 @@ Features
5252
- Implementation of all General, Market Data and Account endpoints.
5353
- Asyncio implementation
5454
- Testnet support for Spot, Futures and Vanilla Options
55-
- Simple handling of authentication
55+
- Simple handling of authentication include RSA keys
5656
- No need to generate timestamps yourself, the wrapper does it for you
5757
- Response exception handling
5858
- Websocket handling with reconnection and multiplexed connections

binance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
"""
66

7-
__version__ = '1.0.16'
7+
__version__ = "1.0.17"
88

99
from binance.client import Client, AsyncClient # noqa
1010
from binance.depthcache import DepthCacheManager, OptionsDepthCacheManager, ThreadedDepthCacheManager # noqa

docs/changelog.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
11
Changelog
22
=========
33

4+
v1.0.17 - 2023-02-21
5+
^^^^^^^^^^^^^^^^^^^^
6+
7+
**Added**
8+
9+
- RSA key authentication
10+
- Support for api1, api2, api3, api4 base endpoints
11+
- binance.us staking endpoints
12+
- Options ticker by expiration socket
13+
- Staking endpoints
14+
- Pay and Convert endpoints
15+
- Futures index info endpoint
16+
- Open OCO Orders endpoint
17+
- Param to pass session params to aiohttp.ClientSession
18+
19+
20+
**Updated**
21+
22+
- Some margin endpoint versions
23+
- Support testnet for more streams
24+
25+
**Fixed**
26+
27+
- Indefinite websocket reconnect loop
28+
- Crash on parsing code from some errors
29+
30+
**Added**
31+
432
v1.0.16 - 2022-04-09
533
^^^^^^^^^^^^^^^^^^^^
634

0 commit comments

Comments
 (0)