Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-zehentleitner committed Nov 24, 2023
1 parent 4bf224d commit 8b37ba4
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
generate_release_notes: true
name: unicorn-binance-trailing-stop-loss
prerelease: false
tag_name: 1.0.0
tag_name: 1.1.0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Create PyPi Release
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,10 @@ Run in bash:
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/archive/$(curl -s https://api.github.com/repos/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade`

#### Windows
Use the below command with the version (such as 1.0.0) you determined
Use the below command with the version (such as 1.1.0) you determined
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/releases/latest):

`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/archive/1.0.0.tar.gz --upgrade`
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/archive/1.1.0.tar.gz --upgrade`
### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss)
This is not a release version and can not be considered to be stable!

Expand Down
2 changes: 1 addition & 1 deletion dev/set_version_config.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
1.0.0
1.1.0
meta.yaml,pyproject.toml,setup.py,README.md,.github/workflows/build_wheels.yml,dev/sphinx/source/conf.py,unicorn_binance_trailing_stop_loss/manager.py
2 changes: 1 addition & 1 deletion dev/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 = '1.0.0'
release = '1.1.0'

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

Expand Down
6 changes: 3 additions & 3 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "unicorn-binance-trailing-stop-loss" %}
{% set version = "1.0.0" %}
{% set version = "1.1.0" %}

package:
name: {{ name|lower }}
Expand Down Expand Up @@ -260,10 +260,10 @@ about:
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/archive/$(curl -s https://api.github.com/repos/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade`
#### Windows
Use the below command with the version (such as 1.0.0) you determined
Use the below command with the version (such as 1.1.0) you determined
[here](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/releases/latest):
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/archive/1.0.0.tar.gz --upgrade`
`pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss/archive/1.1.0.tar.gz --upgrade`
### From the latest source (dev-stage) with PIP from [GitHub](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss)
This is not a release version and can not be considered to be stable!
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-trailing-stop-loss"
version = "1.0.0"
version = "1.1.0"
description = "A Python library with a command line interface for a trailing stop loss and smart entry on the Binance exchange. We also offer a standalone version for Windows and Mac that does not require an installed Python environment. "
authors = ["LUCIT Systems and Development <[email protected]>"]
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 @@ -31,7 +31,7 @@
'unicorn_binance_trailing_stop_loss/manager.py'],
annotate=False),
name='unicorn-binance-trailing-stop-loss',
version="1.0.0",
version="1.1.0",
author="LUCIT Systems and Development",
author_email='[email protected]',
url="https://github.com/LUCIT-Systems-and-Development/unicorn-binance-trailing-stop-loss",
Expand Down
2 changes: 1 addition & 1 deletion unicorn_binance_trailing_stop_loss/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import time

__app_name__ = "unicorn-binance-trailing-stop-loss"
__version__ = "1.0.0"
__version__ = "1.1.0"
__logger__ = logging.getLogger("unicorn_binance_trailing_stop_loss")


Expand Down

0 comments on commit 8b37ba4

Please sign in to comment.