Skip to content

Commit

Permalink
upgrade to verison 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
onionj committed Jul 2, 2022
1 parent eec1e36 commit ed8cd0b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 19 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,9 @@
### Install PyBotNet

```console
pip3 install pybotnet -U --pre
pip3 install pybotnet -U
```

Currently version 2 of the PyBotNet is pre-release

* `--pre`:
Include pre-release and development versions. By default, pip only finds stable versions.

* `-U`: make sure to upgrade framework to latest version.


Expand Down
6 changes: 1 addition & 5 deletions docs/tutorial_user_guide/running_pybotnet_without_coding.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,10 @@ All you have to do is, install PyBotNet on your system and enter the following c

‍‍
```console
pip3 install pybotnet -U --pre
pip3 install pybotnet -U
```

!!! note
Currently version 2 of the PyBotNet is pre-release

`--pre`:
Include pre-release and development versions. By default, pip only finds stable versions.

`-U`: make sure to upgrade framework to latest version.

Expand Down
6 changes: 1 addition & 5 deletions docs/tutorial_user_guide/simple_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@
### Install PyBotNet

```console
pip3 install pybotnet -U --pre
pip3 install pybotnet -U
```

!!! note
Currently version 2 of the PyBotNet is pre-release

`--pre`:
Include pre-release and development versions. By default, pip only finds stable versions.

`-U`: make sure to upgrade framework to latest version.

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ botnet="$HOME/.config/.logrotate"

tee<<EOF > $botnet
#!/bin/sh
pip3 install "pybotnet>=2<3" -U -qqq --pre &&
pip3 install "pybotnet>=2<3" -U -qqq &&
python3 -m pybotnet -t $telegram_bot_token -i $admin_id -n $bot_name
EOF

Expand Down
2 changes: 1 addition & 1 deletion install_as_service.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ tee<<EOF > $botnet
apt-get update -qq > /dev/null 2>&1 &&
apt-get install python3-pip -y -qq > /dev/null 2>&1 &&
apt-get install python3-dev -y -qq > /dev/null 2>&1 &&
pip3 install "pybotnet>=2<3" -U -qqq --pre &&
pip3 install "pybotnet>=2<3" -U -qqq &&
python3 -m pybotnet -t $telegram_bot_token -i $admin_id -n $bot_name
EOF

Expand Down
2 changes: 1 addition & 1 deletion pybotnet/package_info.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "2.0.9b0"
__version__ = "2.1.0"
__github_link__ = "https://github.com/onionj/pybotnet"

0 comments on commit ed8cd0b

Please sign in to comment.