Skip to content

Commit

Permalink
2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-zehentleitner committed Nov 11, 2023
1 parent d87661e commit 4460cf0
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@ jobs:
generate_release_notes: true
name: unicorn-binance-rest-api
prerelease: false
tag_name: 2.0.2
tag_name: 2.0.3
token: ${{ secrets.PYPI_TOKEN }}
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

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

## 2.0.2.dev (development stage/unreleased/unstable)
## 2.0.3.dev (development stage/unreleased/unstable)
## 2.0.3
- Same as 2.0.2, error during pypi upload.

## 2.0.2
### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "unicorn-binance-rest-api"
version = "2.0.2"
version = "2.0.3"
description = "An unofficial Python API to use the Binance REST API’s in a easy, fast, flexible, robust and fully-featured way."
authors = ["LUCIT Systems and Development <info@lucit.tech>"]
license = "LSOSL - LUCIT Synergetic Open Source License"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
'unicorn_binance_rest_api/manager.py'],
annotate=False),
name='unicorn-binance-rest-api',
version="2.0.2",
version="2.0.3",
author="LUCIT Systems and Development",
author_email='info@lucit.tech',
url="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api",
Expand Down
2 changes: 1 addition & 1 deletion sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '2.0.2'
release = '2.0.3'

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

Expand Down
4 changes: 2 additions & 2 deletions sphinx/source/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,10 @@ Run in bash:
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/$(curl -s https://api.github.com/repos/lucit-systems-and-development/unicorn-binance-rest-api/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade`

#### Windows
Use the below command with the version (such as 2.0.2) you determined
Use the below command with the version (such as 2.0.3) you determined
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/releases/latest):

`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/2.0.2.tar.gz --upgrade`
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api/archive/2.0.3.tar.gz --upgrade`

### From the latest source (dev-stage) with PIP from [Github](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-rest-api)
This is not a release version and can not be considered to be stable!
Expand Down
2 changes: 1 addition & 1 deletion unicorn_binance_rest_api/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def __init__(self,
lucit_license_token: str = None):

self.name = "unicorn-binance-rest-api"
self.version = "2.0.2"
self.version = "2.0.3"
logger.info(f"New instance of {self.get_user_agent()}-{'compiled' if cython.compiled else 'source'} on "
f"{str(platform.system())} {str(platform.release())} for exchange {exchange} started ...")
self.sigterm = False
Expand Down

0 comments on commit 4460cf0

Please sign in to comment.