Skip to content

Commit f379073

Browse files
version 2.10.2 + docs
1 parent 7f1372c commit f379073

33 files changed

+2102
-2127
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
generate_release_notes: true
106106
name: unicorn-binance-websocket-api
107107
prerelease: false
108-
tag_name: 2.10.1
108+
tag_name: 2.10.2
109109
token: ${{ secrets.GITHUB_TOKEN }}
110110

111111
- name: Create PyPi Release

.github/workflows/unit-tests.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ jobs:
2424
pip install coveralls
2525
2626
- name: Unit test
27-
env:
28-
LUCIT_API_SECRET: ${{ secrets.LUCIT_API_SECRET }}
29-
LUCIT_LICENSE_TOKEN: ${{ secrets.LUCIT_LICENSE_TOKEN }}
3027
run: coverage run --source unicorn_binance_websocket_api unittest_binance_websocket_api.py
3128

3229
test_python_3_9:
@@ -46,9 +43,6 @@ jobs:
4643
pip install coveralls
4744
4845
- name: Unit test
49-
env:
50-
LUCIT_API_SECRET: ${{ secrets.LUCIT_API_SECRET }}
51-
LUCIT_LICENSE_TOKEN: ${{ secrets.LUCIT_LICENSE_TOKEN }}
5246
run: coverage run --source unicorn_binance_websocket_api unittest_binance_websocket_api.py
5347

5448
test_python_3_10:
@@ -68,9 +62,6 @@ jobs:
6862
pip install coveralls
6963
7064
- name: Unit test
71-
env:
72-
LUCIT_API_SECRET: ${{ secrets.LUCIT_API_SECRET }}
73-
LUCIT_LICENSE_TOKEN: ${{ secrets.LUCIT_LICENSE_TOKEN }}
7465
run: coverage run --source unicorn_binance_websocket_api unittest_binance_websocket_api.py
7566

7667
test_python_3_11:
@@ -90,9 +81,6 @@ jobs:
9081
pip install coveralls
9182
9283
- name: Unit test
93-
env:
94-
LUCIT_API_SECRET: ${{ secrets.LUCIT_API_SECRET }}
95-
LUCIT_LICENSE_TOKEN: ${{ secrets.LUCIT_LICENSE_TOKEN }}
9684
run: coverage run --source unicorn_binance_websocket_api unittest_binance_websocket_api.py
9785

9886
test_python_3_12:
@@ -112,9 +100,6 @@ jobs:
112100
pip install coveralls
113101
114102
- name: Unit test
115-
env:
116-
LUCIT_API_SECRET: ${{ secrets.LUCIT_API_SECRET }}
117-
LUCIT_LICENSE_TOKEN: ${{ secrets.LUCIT_LICENSE_TOKEN }}
118103
run: coverage run --source unicorn_binance_websocket_api unittest_binance_websocket_api.py
119104

120105
test_python_3_13:
@@ -134,9 +119,6 @@ jobs:
134119
pip install coveralls
135120
136121
- name: Unit test
137-
env:
138-
LUCIT_API_SECRET: ${{ secrets.LUCIT_API_SECRET }}
139-
LUCIT_LICENSE_TOKEN: ${{ secrets.LUCIT_LICENSE_TOKEN }}
140122
run: coverage run --source unicorn_binance_websocket_api unittest_binance_websocket_api.py
141123

142124
- name: Upload coverage to Codecov

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.idea
2+
.buildinfo.bak
23

34
.print_summary.txt
45
dev/unicorn_binance_websocket_api

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://oliver-zehentleitner.github.io/unicorn-binance-websocket-api/readme.html#installation-and-upgrade)
1111

12-
## 2.10.1.dev (development stage/unreleased/unstable)
12+
## 2.10.2.dev (development stage/unreleased/unstable)
13+
14+
## 2.10.2
15+
### Fixed
16+
- restclient.py - Removed lucit licensing
1317

1418
## 2.10.1
1519
### Added

README.md

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

476476
#### Windows
477-
Use the below command with the version (such as 2.10.1) you determined
477+
Use the below command with the version (such as 2.10.2) you determined
478478
[here](https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/releases/latest):
479479

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

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.1
1+
2.10.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://oliver-zehentleitner.github.io/unicorn-binance-websocket-api/readme.html#installation-and-upgrade)
1111

12-
## 2.10.1.dev (development stage/unreleased/unstable)
12+
## 2.10.2.dev (development stage/unreleased/unstable)
13+
14+
## 2.10.2
15+
### Fixed
16+
- restclient.py - Removed lucit licensing
1317

1418
## 2.10.1
1519
### Added

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.1'
30+
release = '2.10.2'
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
@@ -474,10 +474,10 @@ Run in bash:
474474
`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`
475475

476476
#### Windows
477-
Use the below command with the version (such as 2.10.1) you determined
477+
Use the below command with the version (such as 2.10.2) you determined
478478
[here](https://github.com/oliver-zehentleitner/unicorn-binance-websocket-api/releases/latest):
479479

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

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: 87941213a438e483186810d80228c470
3+
config: e037285d341f028452c74d983215256f
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

0 commit comments

Comments
 (0)