Releasing 2.4

This commit is contained in:
Leandro Toledo 2015-08-08 19:37:14 -03:00
parent ab88afc3d3
commit adcf9b1fd5
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2015-08-08
Released 2.4
Fixes Emoji class for Python 3
PEP8 improvements
2015-08-08 2015-08-08
Released 2.3 Released 2.3
Fixes ForceReply class Fixes ForceReply class

View file

@ -15,7 +15,7 @@ def read(*paths):
setup( setup(
name='python-telegram-bot', name='python-telegram-bot',
version='2.3', version='2.4',
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.3' __version__ = '2.4'
from .base import TelegramObject from .base import TelegramObject
from .user import User from .user import User