Skip to content

Commit cc28d8e

Browse files
authored
chore: update to v.0.23 (#1482)
* chore: update to v.0.23 * chore: fix package structure * fix linting
1 parent dfa8737 commit cc28d8e

File tree

5 files changed

+28
-5
lines changed

5 files changed

+28
-5
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=================================
2-
Welcome to python-binance v1.0.22
2+
Welcome to python-binance v1.0.23
33
=================================
44

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

binance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
"""
66

7-
__version__ = "1.0.22"
7+
__version__ = "1.0.23"
88

99
from binance.async_client import AsyncClient # noqa
1010
from binance.client import Client # noqa

binance/ws/__init__.py

Whitespace-only changes.

docs/changelog.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
11
Changelog
22
=========
33

4+
v1.0.23 - 2024-11-27
5+
^^^^^^^^^^^^^^^^^^^^
6+
7+
**Added**
8+
9+
- CRUD over Websockets (create/fetch/edit/cancel) through Websockets
10+
- orjson support
11+
- overridable `headers` per request
12+
- added default recvWindow parameter
13+
- Proxy support for Websockets
14+
- Gift card API
15+
- `cancel_replace_order`, `cancel_all_open_orders` and `cancel_all_open_margin_orders` thanks to @m-HD
16+
- missing `futures_modify_order` from async client
17+
- ruff format
18+
- missing endpoint for `futures_edit_order`
19+
20+
**Fixed**
21+
22+
- updated `create_oco_order` endpoint
23+
- batch orders signature issue
24+
- `fail_connection` issue related to the `websockets` upgrade
25+
- `eddsa` signature issue
26+
27+
428
v1.0.22 - 2024-10-29
529
^^^^^^^^^^^^^^^^^^^^
630

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
#!/usr/bin/env python
2-
from setuptools import setup
2+
from setuptools import setup, find_packages
33
import codecs
44
import os
55
import re
66

7-
87
with codecs.open(
98
os.path.join(os.path.abspath(os.path.dirname(__file__)), "binance", "__init__.py"),
109
"r",
@@ -21,7 +20,7 @@
2120
setup(
2221
name="python-binance",
2322
version=version,
24-
packages=["binance"],
23+
packages=find_packages(exclude=['tests', 'examples']),
2524
description="Binance REST API python implementation",
2625
long_description=long_description,
2726
long_description_content_type="text/x-rst",

0 commit comments

Comments
 (0)