Releasing 2.5

This commit is contained in:
Leandro Toledo 2015-08-09 10:17:32 -03:00
parent 09ffd28df5
commit c4087e96d9
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2015-08-09
Released 2.5
Fixes logging calls in API
2015-08-08 2015-08-08
Released 2.4 Released 2.4
Fixes Emoji class for Python 3 Fixes Emoji class for Python 3

View file

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

View file

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