Bump version number to v1.9.1

This commit is contained in:
Alex Vanin 2021-07-03 11:19:17 +03:00
parent 821389605a
commit 538f50847e
2 changed files with 6 additions and 1 deletions

View file

@ -3,6 +3,11 @@ Least-favourite twitch streamers here
## Change Log ## Change Log
### 1.9.1
#### Fixed
- Server does not fail when processing API response withour `cursor` field.
- String formatting for older python3 versions.
### 1.9 ### 1.9
#### Fixed #### Fixed
- Char escaping and various typos. - Char escaping and various typos.

View file

@ -4,7 +4,7 @@
import cherrypy import cherrypy
from twitch import TwitchClient from twitch import TwitchClient
ver = '1.9.0' ver = '1.9.1'
class FleastServer(object): class FleastServer(object):