From b7579b5b78e89d5ac8f0f16d562529ed5dd68c38 Mon Sep 17 00:00:00 2001 From: Joscha Date: Fri, 12 Apr 2019 21:04:51 +0000 Subject: [PATCH] Bump version to 0.2.0 --- CHANGELOG.md | 2 ++ README.md | 2 +- setup.py | 17 ++++++++++++++++- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0ed73a..f754075 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next version +## 0.2.0 (2019-04-12) + - change config file format - add `ALIASES` variable to `Bot` - add `on_connected` function to `Client` diff --git a/README.md b/README.md index 62e3551..0c0b0bd 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ In your project directory, run: ``` $ python -m venv . $ . bin/activate -$ pip install git+https://github.com/Garmelon/yaboli@v0.1.0 +$ pip install git+https://github.com/Garmelon/yaboli@v0.2.0 ``` ## Example echo bot diff --git a/setup.py b/setup.py index 27cd5f6..eb4d419 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="yaboli", - version="0.1.0", + version="0.2.0", packages=["yaboli"], install_requires=["websockets==7.0"], ) @@ -11,3 +11,18 @@ setup( # - update the README.md installation instructions # - update the changelog # - set a tag to the update commit + +# Meanings of version numbers +# +# Format: a.b.c +# +# a - increased when: major change such as a rewrite +# b - increased when: changes breaking backwards compatibility +# c - increased when: minor changes preserving backwards compatibility +# +# To specify version requirements for yaboli, the following format is +# recommended if you need version a.b.c: +# +# yaboli >=a.b.c,