From 47fcc4acf45032688168381c9cfdebe829bd1669 Mon Sep 17 00:00:00 2001 From: carlosmiei <43336371+carlosmiei@users.noreply.github.com> Date: Thu, 27 Feb 2025 11:02:00 +0000 Subject: [PATCH 1/3] update gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 66df4895e..8ce4dbfe4 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ python_binance.egg-info/ .idea/ venv*/ .vscode +.binance/ \ No newline at end of file From 00d9d341788a123a49deac552cf95581acdb3433 Mon Sep 17 00:00:00 2001 From: carlosmiei <43336371+carlosmiei@users.noreply.github.com> Date: Mon, 19 May 2025 14:45:51 +0100 Subject: [PATCH 2/3] bump version --- README.rst | 2 +- binance/__init__.py | 2 +- docs/changelog.rst | 9 ++++++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index bdca1146c..088a3227d 100755 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ ================================= -Welcome to python-binance v1.0.28 +Welcome to python-binance v1.0.29 ================================= .. image:: https://img.shields.io/pypi/v/python-binance.svg diff --git a/binance/__init__.py b/binance/__init__.py index 7f3012eb1..33b56ff52 100755 --- a/binance/__init__.py +++ b/binance/__init__.py @@ -4,7 +4,7 @@ """ -__version__ = "1.0.28" +__version__ = "1.0.29" from binance.async_client import AsyncClient # noqa from binance.client import Client # noqa diff --git a/docs/changelog.rst b/docs/changelog.rst index 26baadea4..09bd4832d 100755 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,8 +1,15 @@ Changelog ========= +v1.0.29 - 2025-05-19 +^^^^^^^^^^^^^^^^^^^^ + +**Fixed** + +- Ws tesnet spot URLs update + -v1.0.28 - 2024-02-27 +v1.0.28 - 2025-02-27 ^^^^^^^^^^^^^^^^^^^^ **Added** From 1dc325efac23da41a99fff94576f5231097aef51 Mon Sep 17 00:00:00 2001 From: carlosmiei <43336371+carlosmiei@users.noreply.github.com> Date: Tue, 14 Oct 2025 09:56:30 +0100 Subject: [PATCH 3/3] chore: bump to 1.0.30 --- README.rst | 2 +- binance/__init__.py | 2 +- docs/changelog.rst | 28 ++++++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index d597f57b1..71a5f20cb 100755 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/binance/__init__.py b/binance/__init__.py index 33b56ff52..849d524ca 100755 --- a/binance/__init__.py +++ b/binance/__init__.py @@ -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 diff --git a/docs/changelog.rst b/docs/changelog.rst index 09bd4832d..9e8afa90a 100755 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 ^^^^^^^^^^^^^^^^^^^^