diff --git a/CHANGELOG.md b/CHANGELOG.md index fc01070..a77a9bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 5cc43d8..c42a5d6 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/setup.py b/setup.py index eb4d419..0ae307f 100644 --- a/setup.py +++ b/setup.py @@ -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"], )