diff --git a/README.rst b/README.rst index 38bafb13..71a912f6 100755 --- a/README.rst +++ b/README.rst @@ -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 @@ -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 diff --git a/binance/__init__.py b/binance/__init__.py index 268ec5ab..932de6fd 100755 --- a/binance/__init__.py +++ b/binance/__init__.py @@ -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 diff --git a/docs/changelog.rst b/docs/changelog.rst index 52c5ad3f..395db6b0 100755 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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**