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 a26afd08bfeb5604e4d10e5c520aab84ab85ac91 Mon Sep 17 00:00:00 2001 From: carlosmiei <43336371+carlosmiei@users.noreply.github.com> Date: Mon, 3 Nov 2025 21:08:13 +0000 Subject: [PATCH 3/3] chore: bump to 32 --- README.rst | 2 +- binance/__init__.py | 2 +- docs/changelog.rst | 11 +++++++++++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 50955dc9e..daadcd97c 100755 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ ================================= -Welcome to python-binance v1.0.31 +Welcome to python-binance v1.0.32 ================================= .. image:: https://img.shields.io/pypi/v/python-binance.svg diff --git a/binance/__init__.py b/binance/__init__.py index 50abc9b8d..c780d5191 100755 --- a/binance/__init__.py +++ b/binance/__init__.py @@ -4,7 +4,7 @@ """ -__version__ = "1.0.31" +__version__ = "1.0.32" from binance.async_client import AsyncClient # noqa from binance.client import Client # noqa diff --git a/docs/changelog.rst b/docs/changelog.rst index 27fb6ea73..bb7100d75 100755 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,4 +1,15 @@ Changelog + +v1.0.32 - 2025-11-03 +^^^^^^^^^^^^^^^^^^^^ + +**Fixed** + +- signature encoding for non-ascii symbols in both private and public endpoints (#1619) + + +v1.0.30 - 2025-10-14 +^^^^^^^^^^^^^^^^^^^^ ========= v1.0.31 - 2025-10-29