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 7bbdb3abc46f55e6eba36f3761aaef1656143ed1 Mon Sep 17 00:00:00 2001 From: carlosmiei <43336371+carlosmiei@users.noreply.github.com> Date: Sat, 6 Dec 2025 09:01:36 +0100 Subject: [PATCH 3/3] chore: bump to 1.0.33 --- README.rst | 2 +- binance/__init__.py | 2 +- docs/changelog.rst | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 61432efbd..38bafb13c 100755 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ ================================= -Welcome to python-binance v1.0.32 +Welcome to python-binance v1.0.33 ================================= .. image:: https://img.shields.io/pypi/v/python-binance.svg diff --git a/binance/__init__.py b/binance/__init__.py index c780d5191..aa3a8c0dc 100755 --- a/binance/__init__.py +++ b/binance/__init__.py @@ -4,7 +4,7 @@ """ -__version__ = "1.0.32" +__version__ = "1.0.33" from binance.async_client import AsyncClient # noqa from binance.client import Client # noqa diff --git a/docs/changelog.rst b/docs/changelog.rst index bb7100d75..52c5ad3fb 100755 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,5 +1,15 @@ Changelog +v1.0.33 - 2025-12-06 + +**Fixed** + +- fix: reconnect keep alive (#1637) + +**Added** + +- moved conditional orders to the new futures algo serivce (#1639) + v1.0.32 - 2025-11-03 ^^^^^^^^^^^^^^^^^^^^