Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump to 1.0.26 #1522

Merged
merged 1 commit into from
Dec 23, 2024
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.25
Welcome to python-binance v1.0.26
=================================

.. 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.25"
__version__ = "1.0.26"

from binance.async_client import AsyncClient # noqa
from binance.client import Client # noqa
Expand Down
18 changes: 18 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Changelog
=========

v1.0.26 - 2024-12-23
^^^^^^^^^^^^^^^^^^^^

**Added**

- Websockets docs
- support for microseconds time unit
- futures data link endpoints
- return type to _get_account_socket thanks to @zhen1007
- futures_index_price_constituents endpoint


**Fixed**

- FuturesDepthCacheManager and OptionsDepthCacheManager to __init__
- EDDSA random error


v1.0.25 - 2024-12-05
^^^^^^^^^^^^^^^^^^^^

Expand Down
Loading