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: update version #1439

Merged
merged 3 commits into from
Oct 22, 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
6 changes: 0 additions & 6 deletions PYPIREADME.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
=================================
Welcome to python-binance v1.0.19
=================================

Updated 11th Aug 2023

.. image:: https://img.shields.io/pypi/v/python-binance.svg
:target: https://pypi.python.org/pypi/python-binance

Expand Down
3 changes: 0 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
=================================
Welcome to python-binance v1.0.19
=================================

.. image:: https://img.shields.io/pypi/v/python-binance.svg
:target: https://pypi.python.org/pypi/python-binance
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.19"
__version__ = "1.0.20"

from binance.client import Client, AsyncClient # noqa
from binance.depthcache import DepthCacheManager, OptionsDepthCacheManager, ThreadedDepthCacheManager # noqa
Expand Down
15 changes: 15 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Changelog
=========

v1.0.20 - 2024-10-22
^^^^^^^^^^^^^^^^^^^^

**Added**
- EDDSA authentication
- Portfolio Margin endpoints
- Some new futures endpoints
- Proxy support for the AsyncClient
- Version override is possible now through `params`

**Fixed**
- Migrated `positionRisk` to v3
- Fixed the error `AttributeError("'Connect' object has no attribute 'protocol'")`
- Some minor bug fixes

v1.0.19 - 2023-08-11
^^^^^^^^^^^^^^^^^^^^

Expand Down
Loading