From 7e74499f8197ec48d58e0ed8c0172f9298d55708 Mon Sep 17 00:00:00 2001 From: Joscha Date: Sun, 14 Apr 2019 16:12:33 +0000 Subject: [PATCH] Bump version to 1.1.0 --- CHANGELOG.md | 2 ++ README.md | 3 ++- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8064c5..5e18410 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index c42a5d6..c7ef69a 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/setup.py b/setup.py index 0ae307f..bf3a4ab 100644 --- a/setup.py +++ b/setup.py @@ -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"], )