Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
=================================
Welcome to python-binance v1.0.33
Welcome to python-binance v1.0.34
=================================

.. image:: https://img.shields.io/pypi/v/python-binance.svg
Expand Down Expand Up @@ -66,6 +66,7 @@ Features
- Demo trading support (by providing demo=True)
- Testnet support for Spot, Futures and Vanilla Options (deprecated)
- Simple handling of authentication include RSA and EDDSA keys
- Verbose mode for inspecting requests (verbose=True)
- No need to generate timestamps yourself, the wrapper does it for you
- RecvWindow sent by default
- Response exception handling
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.33"
__version__ = "1.0.34"

from binance.async_client import AsyncClient # noqa
from binance.client import Client # noqa
Expand Down
14 changes: 14 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
Changelog

v1.0.34 - 2025-12-16

**Added**
- verbose mode for inspecting requests (verbose=True) (#1642)
- feat: add support for rpi orders (#1644)
- feat: update futures ticker endpoint to v2 (#1650)
- feat: add support for websocket algo orders (#1646)
- docs: add missing doc references from async client (#1651)

**Fixed**

- fix: remove duplicate import and replace type() with isinstance() (#1623)
- fix(client): use proper exception instead of assert for US endpoints (#1641)

v1.0.33 - 2025-12-06

**Fixed**
Expand Down
Loading