diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index bfc300ac9e..b01b194154 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -91,7 +91,7 @@ jobs: generate_release_notes: true name: unicorn-binance-websocket-api prerelease: false - tag_name: 2.10.0 + tag_name: 2.9.0 token: ${{ secrets.GITHUB_TOKEN }} - name: Create PyPi Release diff --git a/CHANGELOG.md b/CHANGELOG.md index b9b58eb357..c5b8399fff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p [Discussions about unicorn-binance-websocket-api releases!](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/discussions/categories/releases) -[How to upgrade to the latest version!](https://unicorn-binance-websocket-api.docs.lucit.tech/readme.html#installation-and-upgrade) + [How to upgrade to the latest version!](https://unicorn-binance-websocket-api.docs.lucit.tech/readme.html#installation-and-upgrade) -## 2.10.0.dev (development stage/unreleased/unstable) +## 2.9.0.dev (development stage/unreleased/unstable) -## 2.10.0 +## 2.9.0 ### Added - New `Websocket API Spot` functions: - `manager.api.spot.cancel_and_replace_order()` @@ -36,6 +36,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - `manager.api.futures.get_server_time()` - `manager.api.futures.modify_order()` - `manager.api.futures.ping()` +- Error handling if someone tries to use the WebSocket API Feature with an unsupported exchange. ### Changed - ujson has been replaced by orjson (faster!) - Websocket API functions are no longer available under `manager.api` but under `manager.api.spot`. In addition, there @@ -43,13 +44,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - No more use of deepcopy in ws api (faster!) - Enhanced logging in WS API -## 2.9.0 -### Added -- Support for 'binance.com-futures' WebSocket API. -- Error handling if someone tries to use the WebSocket API Feature with an unsupported exchange. -### Fixed -- Type Error of returned value of `api.create_order()` and `api.create_test_order()`. - ## 2.8.1 ### Changed - Log levels in `send_with_stream()` to be less verbose. diff --git a/README.md b/README.md index fff93b4ac0..fef15cfe58 100644 --- a/README.md +++ b/README.md @@ -491,10 +491,10 @@ Run in bash: `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` #### Windows -Use the below command with the version (such as 2.10.0) you determined +Use the below command with the version (such as 2.9.0) you determined [here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest): -`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.10.0.tar.gz --upgrade` +`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.9.0.tar.gz --upgrade` ### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api) This is not a release version and can not be considered to be stable! diff --git a/dev/set_version_config.txt b/dev/set_version_config.txt index f1c5c14f04..5b23ff5536 100644 --- a/dev/set_version_config.txt +++ b/dev/set_version_config.txt @@ -1,2 +1,2 @@ -2.10.0 +2.9.0 meta.yaml,pyproject.toml,setup.py,README.md,.github/workflows/build_wheels.yml,dev/sphinx/source/conf.py,unicorn_binance_websocket_api/manager.py diff --git a/dev/sphinx/source/changelog.md b/dev/sphinx/source/changelog.md index b9b58eb357..c5b8399fff 100644 --- a/dev/sphinx/source/changelog.md +++ b/dev/sphinx/source/changelog.md @@ -7,11 +7,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p [Discussions about unicorn-binance-websocket-api releases!](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/discussions/categories/releases) -[How to upgrade to the latest version!](https://unicorn-binance-websocket-api.docs.lucit.tech/readme.html#installation-and-upgrade) + [How to upgrade to the latest version!](https://unicorn-binance-websocket-api.docs.lucit.tech/readme.html#installation-and-upgrade) -## 2.10.0.dev (development stage/unreleased/unstable) +## 2.9.0.dev (development stage/unreleased/unstable) -## 2.10.0 +## 2.9.0 ### Added - New `Websocket API Spot` functions: - `manager.api.spot.cancel_and_replace_order()` @@ -36,6 +36,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - `manager.api.futures.get_server_time()` - `manager.api.futures.modify_order()` - `manager.api.futures.ping()` +- Error handling if someone tries to use the WebSocket API Feature with an unsupported exchange. ### Changed - ujson has been replaced by orjson (faster!) - Websocket API functions are no longer available under `manager.api` but under `manager.api.spot`. In addition, there @@ -43,13 +44,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - No more use of deepcopy in ws api (faster!) - Enhanced logging in WS API -## 2.9.0 -### Added -- Support for 'binance.com-futures' WebSocket API. -- Error handling if someone tries to use the WebSocket API Feature with an unsupported exchange. -### Fixed -- Type Error of returned value of `api.create_order()` and `api.create_test_order()`. - ## 2.8.1 ### Changed - Log levels in `send_with_stream()` to be less verbose. diff --git a/dev/sphinx/source/conf.py b/dev/sphinx/source/conf.py index f72cb929f0..c755ba38ef 100644 --- a/dev/sphinx/source/conf.py +++ b/dev/sphinx/source/conf.py @@ -27,7 +27,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '2.10.0' +release = '2.9.0' html_last_updated_fmt = "%b %d %Y at %H:%M (CET)" diff --git a/dev/sphinx/source/readme.md b/dev/sphinx/source/readme.md index fff93b4ac0..fef15cfe58 100644 --- a/dev/sphinx/source/readme.md +++ b/dev/sphinx/source/readme.md @@ -491,10 +491,10 @@ Run in bash: `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` #### Windows -Use the below command with the version (such as 2.10.0) you determined +Use the below command with the version (such as 2.9.0) you determined [here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest): -`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.10.0.tar.gz --upgrade` +`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.9.0.tar.gz --upgrade` ### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api) This is not a release version and can not be considered to be stable! diff --git a/docs/.buildinfo b/docs/.buildinfo index 96e5f32111..8c6c1ff58a 100644 --- a/docs/.buildinfo +++ b/docs/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file records the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 2787ad24273029e33ed6ce644f0bdeaa +config: da9f97396f6bd67258066a483f217a50 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/.buildinfo.bak b/docs/.buildinfo.bak index 0e5e0fef68..96e5f32111 100644 --- a/docs/.buildinfo.bak +++ b/docs/.buildinfo.bak @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file records the configuration used when building these files. When it is not found, a full rebuild will be done. -config: d250c15ae63cde9bb6cd52f47021e5e4 +config: 2787ad24273029e33ed6ce644f0bdeaa tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/_modules/index.html b/docs/_modules/index.html index 4c2e0c1b70..c014c097c8 100644 --- a/docs/_modules/index.html +++ b/docs/_modules/index.html @@ -4,7 +4,7 @@ - Overview: module code — unicorn-binance-websocket-api 2.10.0 documentation + Overview: module code — unicorn-binance-websocket-api 2.9.0 documentation @@ -255,7 +255,7 @@

Navigation

Index of all LUCIT Software Documentation
© Copyright 2023-2023, LUCIT Systems and Development. All Rights Reserved.. See License for more information.
- Last updated on Nov 14 2024 at 11:42 (CET). + Last updated on Nov 14 2024 at 11:47 (CET). Found a bug?
Created using Sphinx 8.1.3. diff --git a/docs/_modules/unicorn_binance_websocket_api/manager.html b/docs/_modules/unicorn_binance_websocket_api/manager.html index 267229e70f..df9c3eb0ed 100644 --- a/docs/_modules/unicorn_binance_websocket_api/manager.html +++ b/docs/_modules/unicorn_binance_websocket_api/manager.html @@ -4,7 +4,7 @@ - unicorn_binance_websocket_api.manager — unicorn-binance-websocket-api 2.10.0 documentation + unicorn_binance_websocket_api.manager — unicorn-binance-websocket-api 2.9.0 documentation @@ -203,7 +203,7 @@

Source code for unicorn_binance_websocket_api.manager

import websockets __app_name__: str = "unicorn-binance-websocket-api" -__version__: str = "2.10.0.dev" +__version__: str = "2.9.0.dev" __logger__: logging.getLogger = logging.getLogger("unicorn_binance_websocket_api") logger = __logger__ @@ -5457,7 +5457,7 @@

Navigation

Index of all LUCIT Software Documentation
© Copyright 2023-2023, LUCIT Systems and Development. All Rights Reserved.. See License for more information.
- Last updated on Nov 14 2024 at 11:32 (CET). + Last updated on Nov 14 2024 at 11:47 (CET). Found a bug?
Created using Sphinx 8.1.3. diff --git a/docs/_sources/changelog.md.txt b/docs/_sources/changelog.md.txt index b9b58eb357..c5b8399fff 100644 --- a/docs/_sources/changelog.md.txt +++ b/docs/_sources/changelog.md.txt @@ -7,11 +7,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p [Discussions about unicorn-binance-websocket-api releases!](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/discussions/categories/releases) -[How to upgrade to the latest version!](https://unicorn-binance-websocket-api.docs.lucit.tech/readme.html#installation-and-upgrade) + [How to upgrade to the latest version!](https://unicorn-binance-websocket-api.docs.lucit.tech/readme.html#installation-and-upgrade) -## 2.10.0.dev (development stage/unreleased/unstable) +## 2.9.0.dev (development stage/unreleased/unstable) -## 2.10.0 +## 2.9.0 ### Added - New `Websocket API Spot` functions: - `manager.api.spot.cancel_and_replace_order()` @@ -36,6 +36,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - `manager.api.futures.get_server_time()` - `manager.api.futures.modify_order()` - `manager.api.futures.ping()` +- Error handling if someone tries to use the WebSocket API Feature with an unsupported exchange. ### Changed - ujson has been replaced by orjson (faster!) - Websocket API functions are no longer available under `manager.api` but under `manager.api.spot`. In addition, there @@ -43,13 +44,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - No more use of deepcopy in ws api (faster!) - Enhanced logging in WS API -## 2.9.0 -### Added -- Support for 'binance.com-futures' WebSocket API. -- Error handling if someone tries to use the WebSocket API Feature with an unsupported exchange. -### Fixed -- Type Error of returned value of `api.create_order()` and `api.create_test_order()`. - ## 2.8.1 ### Changed - Log levels in `send_with_stream()` to be less verbose. diff --git a/docs/_sources/readme.md.txt b/docs/_sources/readme.md.txt index fff93b4ac0..fef15cfe58 100644 --- a/docs/_sources/readme.md.txt +++ b/docs/_sources/readme.md.txt @@ -491,10 +491,10 @@ Run in bash: `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` #### Windows -Use the below command with the version (such as 2.10.0) you determined +Use the below command with the version (such as 2.9.0) you determined [here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest): -`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.10.0.tar.gz --upgrade` +`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.9.0.tar.gz --upgrade` ### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api) This is not a release version and can not be considered to be stable! diff --git a/docs/changelog.html b/docs/changelog.html index 0f6173d8c0..f7126a88f3 100644 --- a/docs/changelog.html +++ b/docs/changelog.html @@ -5,7 +5,7 @@ - unicorn-binance-websocket-api Change Log — unicorn-binance-websocket-api 2.10.0 documentation + unicorn-binance-websocket-api Change Log — unicorn-binance-websocket-api 2.9.0 documentation @@ -65,713 +65,708 @@

Table of Contents