Skip to content

Commit ac9cc74

Browse files
2.2.0
1 parent 959d969 commit ac9cc74

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

Diff for: .github/workflows/build_wheels.yml

+1-1
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.4
93+
tag_name: 2.2.0
9494
token: ${{ secrets.GITHUB_TOKEN }}
9595

9696
- name: Create PyPi Release

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -371,10 +371,10 @@ Run in bash:
371371
`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`
372372

373373
#### Windows
374-
Use the below command with the version (such as 2.1.4) you determined
374+
Use the below command with the version (such as 2.2.0) you determined
375375
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest):
376376

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

Diff for: dev/set_version_config.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
2.1.4
1+
2.2.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

Diff for: dev/sphinx/source/conf.py

+1-1
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.4'
30+
release = '2.2.0'
3131

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

Diff for: meta.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "unicorn-binance-websocket-api" %}
2-
{% set version = "2.1.4" %}
2+
{% set version = "2.2.0" %}
33

44
package:
55
name: {{ name|lower }}
@@ -442,10 +442,10 @@ about:
442442
`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`
443443
444444
#### Windows
445-
Use the below command with the version (such as 2.1.4) you determined
445+
Use the below command with the version (such as 2.2.0) you determined
446446
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/releases/latest):
447447
448-
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.1.4.tar.gz --upgrade`
448+
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/archive/2.2.0.tar.gz --upgrade`
449449
### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api)
450450
This is not a release version and can not be considered to be stable!
451451

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "unicorn-binance-websocket-api"
3-
version = "2.1.4"
3+
version = "2.2.0"
44
description = "A Python API by LUCIT to use the Binance Websocket API`s (com+testnet, com-margin+testnet, com-isolated_margin+testnet, com-futures+testnet, com-coin_futures, us, tr, dex/chain+testnet) in a easy, fast, flexible, robust and fully-featured way."
55
authors = ["LUCIT Systems and Development <[email protected]>"]
66
license = "LSOSL - LUCIT Synergetic Open Source License"

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
'unicorn_binance_websocket_api/sockets.py'],
3838
annotate=False),
3939
name='unicorn-binance-websocket-api',
40-
version="2.1.4",
40+
version="2.2.0",
4141
author="LUCIT Systems and Development",
4242
author_email='[email protected]',
4343
url="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api",
@@ -49,7 +49,7 @@
4949
license='LSOSL - LUCIT Synergetic Open Source License',
5050
install_requires=['colorama', 'requests', 'websocket-client', 'websockets==10.4', 'flask_restful',
5151
'cheroot', 'flask', 'lucit-licensing-python>=1.8.1', 'ujson', 'psutil', 'PySocks', 'unicorn-fy',
52-
'unicorn-binance-rest-api>=2.1.4', 'typing_extensions', 'Cython'],
52+
'unicorn-binance-rest-api>=2.2.0', 'typing_extensions', 'Cython'],
5353
keywords='binance, asyncio, async, asynchronous, concurrent, websocket-api, webstream-api, '
5454
'binance-websocket, binance-webstream, webstream, websocket, api, binance-dex, '
5555
'binance-futures, binance-margin, binance-us',

Diff for: unicorn_binance_websocket_api/manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
from typing_extensions import Literal
6262

6363
__app_name__: str = "unicorn-binance-websocket-api"
64-
__version__: str = "2.1.4"
64+
__version__: str = "2.2.0"
6565

6666
logger = logging.getLogger("unicorn_binance_websocket_api")
6767

0 commit comments

Comments
 (0)