Skip to content

Commit 5824c3e

Browse files
release 2.1.2
1 parent 8517141 commit 5824c3e

30 files changed

+1845
-1826
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
generate_release_notes: true
9191
name: unicorn-binance-websocket-api
9292
prerelease: false
93-
tag_name: 2.1.1
93+
tag_name: 2.1.2
9494
token: ${{ secrets.GITHUB_TOKEN }}
9595

9696
- name: Create PyPi Release

CHANGELOG.md

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

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

12-
## 2.1.1.dev (development stage/unreleased/unstable)
12+
## 2.1.2.dev (development stage/unreleased/unstable)
13+
14+
## 2.1.2
15+
### Fixed
16+
- `RuntimeError: dictionary changed size during iteration` in `manager.stop_manager()`.
1317

1418
## 2.1.1
1519
### Changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,10 @@ Run in bash:
365365
`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`
366366

367367
#### Windows
368-
Use the below command with the version (such as 2.1.1) you determined
368+
Use the below command with the version (such as 2.1.2) you determined
369369
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest):
370370

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

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.1.1
1+
2.1.2
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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
99

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

12-
## 2.1.1.dev (development stage/unreleased/unstable)
12+
## 2.1.2.dev (development stage/unreleased/unstable)
13+
14+
## 2.1.2
15+
### Fixed
16+
- `RuntimeError: dictionary changed size during iteration` in `manager.stop_manager()`.
1317

1418
## 2.1.1
1519
### Changed

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.1.1'
30+
release = '2.1.2'
3131

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

dev/sphinx/source/license.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Binance features into diverse applications.
2626
2. PROJECT INFORMATION
2727

2828
- Project name: UNICORN Binance WebSocket API
29-
- Project page: https://www.lucit.tech/unicorn-binance-rest-api.html
30-
- GitHub repository: https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api
31-
- PyPI repository: https://pypi.org/project/unicorn-binance-rest-api
29+
- Project page: https://www.lucit.tech/unicorn-binance-websocket-api.html
30+
- GitHub repository: https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api
31+
- PyPI repository: https://pypi.org/project/unicorn-binance-websocket-api
3232
- Get a license: https://shop.lucit.services/software
3333

3434

dev/sphinx/source/readme.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ Part of '[UNICORN Binance Suite](https://www.lucit.tech/unicorn-binance-suite.ht
3737

3838
## Get a UNICORN Binance Suite License
3939

40-
To run modules of the *UNICORN Binance Suite* you need a
41-
[valid license](https://medium.lucit.tech/how-to-obtain-and-use-a-unicorn-binance-suite-license-key-and-run-the-ubs-module-according-to-best-87b0088124a8#4ca4)!
40+
To run modules of the *UNICORN Binance Suite* you need a [valid license](https://medium.lucit.tech/how-to-obtain-and-use-a-unicorn-binance-suite-license-key-and-run-the-ubs-module-according-to-best-87b0088124a8#4ca4)!
4241

4342
## Receive Data from Binance WebSockets
4443

@@ -51,7 +50,7 @@ ubwa = BinanceWebSocketApiManager(exchange="binance.com")
5150
ubwa.create_stream(channels=['trade', 'kline_1m'], markets=['btcusdt', 'bnbbtc', 'ethbtc'])
5251
```
5352

54-
#### And 4 more lines to print the receives:
53+
### And 4 more lines to print the receives:
5554
```
5655
while True:
5756
oldest_data_from_stream_buffer = ubwa.pop_stream_data_from_stream_buffer()
@@ -315,8 +314,7 @@ For the PyPy interpreter we offer packages only from Python version 3.9 and high
315314

316315
Anaconda packages are available from Python version 3.8 and higher.
317316

318-
The current dependencies are listed
319-
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/requirements.txt).
317+
The current dependencies are listed [here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/requirements.txt).
320318

321319
If you run into errors during the installation take a look [here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/wiki/Installation).
322320

@@ -367,10 +365,10 @@ Run in bash:
367365
`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`
368366

369367
#### Windows
370-
Use the below command with the version (such as 2.1.1) you determined
368+
Use the below command with the version (such as 2.1.2) you determined
371369
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest):
372370

373-
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.1.1.tar.gz --upgrade`
371+
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.1.2.tar.gz --upgrade`
374372
### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api)
375373
This is not a release version and can not be considered to be stable!
376374

@@ -474,8 +472,7 @@ To receive news (like inspection windows/maintenance) about the Binance API`s su
474472
- [https://t.me/BinanceExchange](https://t.me/BinanceExchange)
475473

476474
## How to report Bugs or suggest Improvements?
477-
[List of planned features](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) -
478-
click ![thumbs-up](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-websocket-api/master/images/misc/thumbup.png) if you need one of them or suggest a new feature!
475+
[List of planned features](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) - click ![thumbs-up](https://raw.githubusercontent.com/lucit-systems-and-development/unicorn-binance-websocket-api/master/images/misc/thumbup.png) if you need one of them or suggest a new feature!
479476

480477
Before you report a bug, [try the latest release](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api#installation-and-upgrade). If the issue still exists, provide the error trace, OS
481478
and Python version and explain how to reproduce the error. A demo script is appreciated.
@@ -520,5 +517,4 @@ companies from the US analyze binance.com market data - as long as they do not t
520517

521518
[![Get professional and fast support](https://raw.githubusercontent.com/LUCIT-Systems-and-Development/unicorn-binance-suite/master/images/support/LUCIT-get-professional-and-fast-support.png)](https://www.lucit.tech/get-support.html)
522519

523-
***Do you need a developer, operator or consultant?*** [Contact us](https://www.lucit.tech/contact.html) for a
524-
non-binding initial consultation!
520+
***Do you need a developer, operator or consultant?*** [Contact us](https://www.lucit.tech/contact.html) for a non-binding initial consultation!

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 hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 9738a305c1139326dcfe8c1966073496
3+
config: 1d416b714b82cfd5b77177f6e5da0519
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.1.1 documentation</title><meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Overview: module code &#8212; unicorn-binance-websocket-api 2.1.2 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" />
@@ -251,7 +251,7 @@ <h3>Navigation</h3>
251251
<div class="footer">
252252
&copy; <a href="/license.html">Copyright</a> 2023-2023, LUCIT Systems and Development. All Rights Reserved..
253253
See <a href="/license.html">License</a> for more information.<br />
254-
Last updated on Nov 18 2023 at 15:47 (CET).
254+
Last updated on Nov 23 2023 at 03:21 (CET).
255255
<a href="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/issues/new/choose">Found a bug</a>?
256256
<br />
257257
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.

0 commit comments

Comments
 (0)