From 75fb0463312eb65c554f45945a3dc9460f238713 Mon Sep 17 00:00:00 2001 From: Sam McHardy Date: Fri, 11 Aug 2023 08:32:24 +0700 Subject: [PATCH] Update to v1.0.19 --- PYPIREADME.rst | 4 ++-- README.rst | 4 ++-- binance/__init__.py | 2 +- docs/changelog.rst | 14 ++++++++++++++ 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/PYPIREADME.rst b/PYPIREADME.rst index fbdbf5b7..28aa9a9e 100644 --- a/PYPIREADME.rst +++ b/PYPIREADME.rst @@ -1,8 +1,8 @@ ================================= -Welcome to python-binance v1.0.18 +Welcome to python-binance v1.0.19 ================================= -Updated 9th Aug 2023 +Updated 11th Aug 2023 .. image:: https://img.shields.io/pypi/v/python-binance.svg :target: https://pypi.python.org/pypi/python-binance diff --git a/README.rst b/README.rst index 91ee2b4f..8146ea45 100755 --- a/README.rst +++ b/README.rst @@ -1,8 +1,8 @@ ================================= -Welcome to python-binance v1.0.18 +Welcome to python-binance v1.0.19 ================================= -Updated 9th Aug 2023 +Updated 11th Aug 2023 .. image:: https://img.shields.io/pypi/v/python-binance.svg :target: https://pypi.python.org/pypi/python-binance diff --git a/binance/__init__.py b/binance/__init__.py index fc94f1bd..c39a97ed 100755 --- a/binance/__init__.py +++ b/binance/__init__.py @@ -4,7 +4,7 @@ """ -__version__ = "1.0.18" +__version__ = "1.0.19" from binance.client import Client, AsyncClient # noqa from binance.depthcache import DepthCacheManager, OptionsDepthCacheManager, ThreadedDepthCacheManager # noqa diff --git a/docs/changelog.rst b/docs/changelog.rst index fc4629fd..b0844d13 100755 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,20 @@ Changelog ========= +v1.0.19 - 2023-08-11 +^^^^^^^^^^^^^^^^^^^^ + +**Added** + +- some new futures and margin endpoints +- pass session_params to streams for AsyncClient + +**Fixed** + +- removed debug statements +- options testnet URL +- accessing msg variable before assignment + v1.0.18 - 2023-08-09 ^^^^^^^^^^^^^^^^^^^^