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
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
=================================
Welcome to python-binance v1.0.29
Welcome to python-binance v1.0.30
=================================

.. image:: https://img.shields.io/pypi/v/python-binance.svg
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.29"
__version__ = "1.0.30"

from binance.async_client import AsyncClient # noqa
from binance.client import Client # 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.30 - 2025-10-14
^^^^^^^^^^^^^^^^^^^^

**Fixed**

- Set default limit=None for futures_historical_klines* (fetch full range by default) (#1607)
- fixed a typo in a method name (#1605)
- all links updated (#1600)
- throw readloopclosed error if trying to connect once read loop is already closed (#1593)
- ensure spot v3 version (#1587


**Added**
- Demo trading
- websocket userdatastream.signature support, deprecate listenkey for spot market


v1.0.28 - 2025-02-27
^^^^^^^^^^^^^^^^^^^^

**Added**

- Add `papi_get_rate_limit`
- Add docs for `create_oco_order`
- Add `uiKlines` support
- Add options websocket market streams
- Add dozens of missing endpoints

v1.0.29 - 2025-05-19
^^^^^^^^^^^^^^^^^^^^

Expand Down
Loading