Skip to content

Commit

Permalink
chore: update to v.0.23 (#1482)
Browse files Browse the repository at this point in the history
* chore: update to v.0.23

* chore: fix package structure

* fix linting
  • Loading branch information
carlosmiei authored Nov 27, 2024
1 parent dfa8737 commit cc28d8e
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 5 deletions.
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.22
Welcome to python-binance v1.0.23
=================================

.. 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.22"
__version__ = "1.0.23"

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

v1.0.23 - 2024-11-27
^^^^^^^^^^^^^^^^^^^^

**Added**

- CRUD over Websockets (create/fetch/edit/cancel) through Websockets
- orjson support
- overridable `headers` per request
- added default recvWindow parameter
- Proxy support for Websockets
- Gift card API
- `cancel_replace_order`, `cancel_all_open_orders` and `cancel_all_open_margin_orders` thanks to @m-HD
- missing `futures_modify_order` from async client
- ruff format
- missing endpoint for `futures_edit_order`

**Fixed**

- updated `create_oco_order` endpoint
- batch orders signature issue
- `fail_connection` issue related to the `websockets` upgrade
- `eddsa` signature issue


v1.0.22 - 2024-10-29
^^^^^^^^^^^^^^^^^^^^

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
#!/usr/bin/env python
from setuptools import setup
from setuptools import setup, find_packages
import codecs
import os
import re


with codecs.open(
os.path.join(os.path.abspath(os.path.dirname(__file__)), "binance", "__init__.py"),
"r",
Expand All @@ -21,7 +20,7 @@
setup(
name="python-binance",
version=version,
packages=["binance"],
packages=find_packages(exclude=['tests', 'examples']),
description="Binance REST API python implementation",
long_description=long_description,
long_description_content_type="text/x-rst",
Expand Down

0 comments on commit cc28d8e

Please sign in to comment.