Skip to content

Commit 933ecdc

Browse files
2.9.0 RC + docs
1 parent 4aafdda commit 933ecdc

30 files changed

+1971
-2019
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
generate_release_notes: true
9292
name: unicorn-binance-websocket-api
9393
prerelease: false
94-
tag_name: 2.10.0
94+
tag_name: 2.9.0
9595
token: ${{ secrets.GITHUB_TOKEN }}
9696

9797
- name: Create PyPi Release

CHANGELOG.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
77

88
[Discussions about unicorn-binance-websocket-api releases!](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/discussions/categories/releases)
99

10-
[How to upgrade to the latest version!](https://unicorn-binance-websocket-api.docs.lucit.tech/readme.html#installation-and-upgrade)
10+
[How to upgrade to the latest version!](https://unicorn-binance-websocket-api.docs.lucit.tech/readme.html#installation-and-upgrade)
1111

12-
## 2.10.0.dev (development stage/unreleased/unstable)
12+
## 2.9.0.dev (development stage/unreleased/unstable)
1313

14-
## 2.10.0
14+
## 2.9.0
1515
### Added
1616
- New `Websocket API Spot` functions:
1717
- `manager.api.spot.cancel_and_replace_order()`
@@ -36,20 +36,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
3636
- `manager.api.futures.get_server_time()`
3737
- `manager.api.futures.modify_order()`
3838
- `manager.api.futures.ping()`
39+
- Error handling if someone tries to use the WebSocket API Feature with an unsupported exchange.
3940
### Changed
4041
- ujson has been replaced by orjson (faster!)
4142
- Websocket API functions are no longer available under `manager.api` but under `manager.api.spot`. In addition, there
4243
is now also `manager.api.futures`.
4344
- No more use of deepcopy in ws api (faster!)
4445
- Enhanced logging in WS API
4546

46-
## 2.9.0
47-
### Added
48-
- Support for 'binance.com-futures' WebSocket API.
49-
- Error handling if someone tries to use the WebSocket API Feature with an unsupported exchange.
50-
### Fixed
51-
- Type Error of returned value of `api.create_order()` and `api.create_test_order()`.
52-
5347
## 2.8.1
5448
### Changed
5549
- Log levels in `send_with_stream()` to be less verbose.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -491,10 +491,10 @@ Run in bash:
491491
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/$(curl -s https://api.github.com/repos/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade`
492492

493493
#### Windows
494-
Use the below command with the version (such as 2.10.0) you determined
494+
Use the below command with the version (such as 2.9.0) you determined
495495
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest):
496496

497-
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.10.0.tar.gz --upgrade`
497+
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.9.0.tar.gz --upgrade`
498498
### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api)
499499
This is not a release version and can not be considered to be stable!
500500

dev/set_version_config.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
2.10.0
1+
2.9.0
22
meta.yaml,pyproject.toml,setup.py,README.md,.github/workflows/build_wheels.yml,dev/sphinx/source/conf.py,unicorn_binance_websocket_api/manager.py

dev/sphinx/source/changelog.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
77

88
[Discussions about unicorn-binance-websocket-api releases!](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/discussions/categories/releases)
99

10-
[How to upgrade to the latest version!](https://unicorn-binance-websocket-api.docs.lucit.tech/readme.html#installation-and-upgrade)
10+
[How to upgrade to the latest version!](https://unicorn-binance-websocket-api.docs.lucit.tech/readme.html#installation-and-upgrade)
1111

12-
## 2.10.0.dev (development stage/unreleased/unstable)
12+
## 2.9.0.dev (development stage/unreleased/unstable)
1313

14-
## 2.10.0
14+
## 2.9.0
1515
### Added
1616
- New `Websocket API Spot` functions:
1717
- `manager.api.spot.cancel_and_replace_order()`
@@ -36,20 +36,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
3636
- `manager.api.futures.get_server_time()`
3737
- `manager.api.futures.modify_order()`
3838
- `manager.api.futures.ping()`
39+
- Error handling if someone tries to use the WebSocket API Feature with an unsupported exchange.
3940
### Changed
4041
- ujson has been replaced by orjson (faster!)
4142
- Websocket API functions are no longer available under `manager.api` but under `manager.api.spot`. In addition, there
4243
is now also `manager.api.futures`.
4344
- No more use of deepcopy in ws api (faster!)
4445
- Enhanced logging in WS API
4546

46-
## 2.9.0
47-
### Added
48-
- Support for 'binance.com-futures' WebSocket API.
49-
- Error handling if someone tries to use the WebSocket API Feature with an unsupported exchange.
50-
### Fixed
51-
- Type Error of returned value of `api.create_order()` and `api.create_test_order()`.
52-
5347
## 2.8.1
5448
### Changed
5549
- Log levels in `send_with_stream()` to be less verbose.

dev/sphinx/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# The short X.Y version
2828
version = ''
2929
# The full version, including alpha/beta/rc tags
30-
release = '2.10.0'
30+
release = '2.9.0'
3131

3232
html_last_updated_fmt = "%b %d %Y at %H:%M (CET)"
3333

dev/sphinx/source/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -491,10 +491,10 @@ Run in bash:
491491
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/$(curl -s https://api.github.com/repos/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade`
492492

493493
#### Windows
494-
Use the below command with the version (such as 2.10.0) you determined
494+
Use the below command with the version (such as 2.9.0) you determined
495495
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest):
496496

497-
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.10.0.tar.gz --upgrade`
497+
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.9.0.tar.gz --upgrade`
498498
### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api)
499499
This is not a release version and can not be considered to be stable!
500500

docs/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 2787ad24273029e33ed6ce644f0bdeaa
3+
config: da9f97396f6bd67258066a483f217a50
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/.buildinfo.bak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: d250c15ae63cde9bb6cd52f47021e5e4
3+
config: 2787ad24273029e33ed6ce644f0bdeaa
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_modules/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Overview: module code &#8212; unicorn-binance-websocket-api 2.10.0 documentation</title><meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Overview: module code &#8212; unicorn-binance-websocket-api 2.9.0 documentation</title><meta name="viewport" content="width=device-width, initial-scale=1.0">
88

99
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=92fd9be5" />
1010
<link rel="stylesheet" type="text/css" href="../_static/pydoctheme.css?v=fdf8e9ae" />
@@ -255,7 +255,7 @@ <h3>Navigation</h3>
255255
<a href="https://docs.lucit.tech">Index of all LUCIT Software Documentation</a><br />
256256
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
257257
See <a href="/license.html">License</a> for more information.<br />
258-
Last updated on Nov 14 2024 at 11:42 (CET).
258+
Last updated on Nov 14 2024 at 11:47 (CET).
259259
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
260260
<br />
261261
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.1.3.

0 commit comments

Comments
 (0)