Bump version to 1.0.0

This commit is contained in:
Joscha 2019-04-13 22:09:58 +00:00
parent 7e56de60da
commit 2f7502723b
3 changed files with 4 additions and 2 deletions

View file

@ -2,6 +2,8 @@
## Next version
# 1.0.0 (2019-04-13)
- add fancy argument parsing
- add login and logout command to room
- add pm command to room

View file

@ -11,7 +11,7 @@ creating bots for [euphoria.io](https://euphoria.io).
Ensure that you have at least Python 3.7 installed.
```
$ pip install git+https://github.com/Garmelon/yaboli@v0.2.0
$ pip install git+https://github.com/Garmelon/yaboli@v1.0.0
```
The use of [venv](https://docs.python.org/3/library/venv.html) is recommended.

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="yaboli",
version="0.2.0",
version="1.0.0",
packages=["yaboli"],
install_requires=["websockets==7.0"],
)