Bump version to 0.2.0
This commit is contained in:
parent
8f576b1147
commit
378cb982a4
3 changed files with 19 additions and 2 deletions
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## Next version
|
## Next version
|
||||||
|
|
||||||
|
## 0.2.0 (2019-04-12)
|
||||||
|
|
||||||
- change config file format
|
- change config file format
|
||||||
- add `ALIASES` variable to `Bot`
|
- add `ALIASES` variable to `Bot`
|
||||||
- add `on_connected` function to `Client`
|
- add `on_connected` function to `Client`
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ In your project directory, run:
|
||||||
```
|
```
|
||||||
$ python -m venv .
|
$ python -m venv .
|
||||||
$ . bin/activate
|
$ . 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
|
## Example echo bot
|
||||||
|
|
|
||||||
17
setup.py
17
setup.py
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="yaboli",
|
name="yaboli",
|
||||||
version="0.1.0",
|
version="0.2.0",
|
||||||
packages=["yaboli"],
|
packages=["yaboli"],
|
||||||
install_requires=["websockets==7.0"],
|
install_requires=["websockets==7.0"],
|
||||||
)
|
)
|
||||||
|
|
@ -11,3 +11,18 @@ setup(
|
||||||
# - update the README.md installation instructions
|
# - update the README.md installation instructions
|
||||||
# - update the changelog
|
# - update the changelog
|
||||||
# - set a tag to the update commit
|
# - 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, <a.b+1.c
|
||||||
|
#
|
||||||
|
# "b+1" is the version number of b increased by 1, not "+1" appended to b.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue