diff --git a/CHANGELOG.md b/CHANGELOG.md index 399f28f..86bd86a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,10 @@ ## Next version +## 1.1.2 (2019-04-14) + - fix room authentication +- resolve to test yaboli more thoroughly before publishing a new version ## 1.1.1 (2019-04-14) diff --git a/README.md b/README.md index b51b517..92f1e14 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ 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.1.1 +$ pip install git+https://github.com/Garmelon/yaboli@v1.1.2 ``` The use of [venv](https://docs.python.org/3/library/venv.html) is recommended. diff --git a/setup.py b/setup.py index a3b8de7..b3b1208 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="yaboli", - version="1.1.1", + version="1.1.2", packages=["yaboli"], install_requires=["websockets==7.0"], )