Skip to content

Commit 730000b

Browse files
version 2.9.1
1 parent 77bcafe commit 730000b

File tree

9 files changed

+18
-12
lines changed

9 files changed

+18
-12
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
generate_release_notes: true
100100
name: unicorn-binance-websocket-api
101101
prerelease: false
102-
tag_name: 2.9.0
102+
tag_name: 2.9.1
103103
token: ${{ secrets.GITHUB_TOKEN }}
104104

105105
- name: Create PyPi Release

CHANGELOG.md

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

1010
[How to upgrade to the latest version!](https://oliver-zehentleitner.github.io/unicorn-binance-websocket-api/readme.html#installation-and-upgrade)
1111

12-
## 2.9.0.dev (development stage/unreleased/unstable)
12+
## 2.10.0.dev (development stage/unreleased/unstable)
13+
14+
## 2.10.0
15+
### Changed
16+
- Moved from https://github.com/LUCIT-Systems-and-Development/ to https://github.com/oliver-zehentleitner
17+
### Removed
18+
- LUCIT Licensing Manager
1319

1420
## 2.9.0
1521
### Added

README.md

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

475475
#### Windows
476-
Use the below command with the version (such as 2.9.0) you determined
476+
Use the below command with the version (such as 2.9.1) you determined
477477
[here](https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/releases/latest):
478478

479-
`pip install https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/archive/2.9.0.tar.gz --upgrade`
479+
`pip install https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/archive/2.9.1.tar.gz --upgrade`
480480
### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api)
481481
This is not a release version and can not be considered to be stable!
482482

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.9.0
1+
2.9.1
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/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.9.0'
30+
release = '2.9.1'
3131

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

meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "unicorn-binance-websocket-api" %}
2-
{% set version = "2.9.0" %}
2+
{% set version = "2.9.1" %}
33

44
package:
55
name: {{ name|lower }}
@@ -558,10 +558,10 @@ about:
558558
`pip install https://github.com/oliver-zehentleitner/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`
559559
560560
#### Windows
561-
Use the below command with the version (such as 2.9.0) you determined
561+
Use the below command with the version (such as 2.9.1) you determined
562562
[here](https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/releases/latest):
563563
564-
`pip install https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/archive/2.9.0.tar.gz --upgrade`
564+
`pip install https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/archive/2.9.1.tar.gz --upgrade`
565565
### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api)
566566
This is not a release version and can not be considered to be stable!
567567

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "unicorn-binance-websocket-api"
3-
version = "2.9.0"
3+
version = "2.9.1"
44
description = "A Python SDK 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 simple, fast, flexible, robust and fully-featured way."
55
authors = ["Oliver Zehentleitner"]
66
license = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676

7777
setup(
7878
name=name,
79-
version="2.9.0",
79+
version="2.9.1",
8080
author="Oliver Zehentleitner",
8181
url="https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api",
8282
description="A Python SDK to use the Binance Websocket API`s (com+testnet, "

unicorn_binance_websocket_api/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
import websockets
7676

7777
__app_name__: str = "unicorn-binance-websocket-api"
78-
__version__: str = "2.9.0.dev"
78+
__version__: str = "2.9.1.dev"
7979
__logger__: logging.getLogger = logging.getLogger("unicorn_binance_websocket_api")
8080

8181
logger = __logger__

0 commit comments

Comments
 (0)