Releasing 2.0

This commit is contained in:
leandrotoledo 2015-07-19 23:40:12 -03:00
parent f4ad7037e1
commit a1899a75e4
3 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,11 @@
2015-07-19
Released 2.0
Fixes bugs
Improves __str__ over to_json()
Creates abstractclass TelegramObject
2015-07-15
Released 1.9

View file

@ -15,7 +15,7 @@ def read(*paths):
setup(
name='python-telegram-bot',
version='1.9',
version='2.0',
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__ = '1.9'
__version__ = '2.0'
from .user import User
from .message import Message