Skip to content

Commit ca52743

Browse files
authored
chore: bump to 1.0.34 (#1652)
* update gitignore * bump version * chore: bump to 1.0.34
1 parent 8d9334a commit ca52743

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=================================
2-
Welcome to python-binance v1.0.33
2+
Welcome to python-binance v1.0.34
33
=================================
44

55
.. image:: https://img.shields.io/pypi/v/python-binance.svg
@@ -66,6 +66,7 @@ Features
6666
- Demo trading support (by providing demo=True)
6767
- Testnet support for Spot, Futures and Vanilla Options (deprecated)
6868
- Simple handling of authentication include RSA and EDDSA keys
69+
- Verbose mode for inspecting requests (verbose=True)
6970
- No need to generate timestamps yourself, the wrapper does it for you
7071
- RecvWindow sent by default
7172
- Response exception handling

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.33"
7+
__version__ = "1.0.34"
88

99
from binance.async_client import AsyncClient # noqa
1010
from binance.client import Client # noqa

docs/changelog.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
Changelog
22

3+
v1.0.34 - 2025-12-16
4+
5+
**Added**
6+
- verbose mode for inspecting requests (verbose=True) (#1642)
7+
- feat: add support for rpi orders (#1644)
8+
- feat: update futures ticker endpoint to v2 (#1650)
9+
- feat: add support for websocket algo orders (#1646)
10+
- docs: add missing doc references from async client (#1651)
11+
12+
**Fixed**
13+
14+
- fix: remove duplicate import and replace type() with isinstance() (#1623)
15+
- fix(client): use proper exception instead of assert for US endpoints (#1641)
16+
317
v1.0.33 - 2025-12-06
418

519
**Fixed**

0 commit comments

Comments
 (0)