Releasing 2.2

This commit is contained in:
leandrotoledo 2015-07-25 18:31:01 -03:00
parent 310ac82ecf
commit d90a4c9acc
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2015-07-25
Released 2.2
Allows debug=True when initializing telegram.Bot
2015-07-20
Released 2.1
Fix to_dict for Document and Video

View file

@ -15,7 +15,7 @@ def read(*paths):
setup(
name='python-telegram-bot',
version='2.1',
version='2.2',
author='Leandro Toledo',
author_email='leandrotoledodesouza@gmail.com',
license='GPLv2',

View file

@ -3,7 +3,7 @@
"""A library that provides a Python interface to the Telegram Bots API"""
__author__ = 'leandrotoledodesouza@gmail.com'
__version__ = '2.1'
__version__ = '2.2'
from .base import TelegramObject
from .user import User