Releasing v2.8.6

This commit is contained in:
Leandro Toledo 2015-10-08 10:23:12 -03:00
parent cf5d184766
commit f2b0cb46a2
4 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2015-10-08
Released 2.8.6
Adds type to User and GroupChat classes (pre-release Telegram feature)
2015-09-24
Released 2.8.5
Handles HTTP Bad Gateway (503) errors on request

View file

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

View file

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

View file

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