Bump version to 1.1.0

This commit is contained in:
Joscha 2019-04-14 16:12:33 +00:00
parent 7780cb92de
commit 01973c1b99
3 changed files with 5 additions and 2 deletions

View file

@ -2,6 +2,8 @@
## Next version
## 1.1.0 (2019-04-14)
- change how config files are passed along
- change module system to support config file changes

View file

@ -10,8 +10,9 @@ creating bots for [euphoria.io](https://euphoria.io).
Ensure that you have at least Python 3.7 installed.
To install yaboli or update your installation to the latest version, run:
```
$ pip install git+https://github.com/Garmelon/yaboli@v1.0.0
$ pip install git+https://github.com/Garmelon/yaboli@v1.1.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="1.0.0",
version="1.1.0",
packages=["yaboli"],
install_requires=["websockets==7.0"],
)