Releasing v2.8.1

This commit is contained in:
leandrotoledo 2015-09-04 19:00:54 -03:00
parent 79cdb6cafe
commit 82f1d18f4b
4 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2015-09-05
Released 2.8.1
Fix regression on Telegram objects with thumb properties
2015-09-04 2015-09-04
Released 2.8 Released 2.8
TelegramError when chat_id is empty for send* methods TelegramError when chat_id is empty for send* methods

View file

@ -60,7 +60,7 @@ author = u'Leandro Toledo'
# The short X.Y version. # The short X.Y version.
version = '2.8' version = '2.8'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '2.8' release = '2.8.1'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View file

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

View file

@ -19,7 +19,7 @@
"""A library that provides a Python interface to the Telegram Bot API""" """A library that provides a Python interface to the Telegram Bot API"""
__author__ = 'leandrotoledodesouza@gmail.com' __author__ = 'leandrotoledodesouza@gmail.com'
__version__ = '2.8' __version__ = '2.8.1'
from .base import TelegramObject from .base import TelegramObject
from .user import User from .user import User