diff --git a/CHANGES.rst b/CHANGES.rst index e49114f0e..a29964a96 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +2015-09-05 + Released 2.8.2 + Fix regression on Telegram ReplyMarkup + Add certificate to is_inputfile method + + 2015-09-05 Released 2.8.1 Fix regression on Telegram objects with thumb properties diff --git a/docs/source/conf.py b/docs/source/conf.py index 5653bd482..c95c511b5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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.1' +release = '2.8.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 8d29159f7..f5b95d4ad 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def read(*paths): setup( name='python-telegram-bot', - version='2.8.1', + version='2.8.2', author='Leandro Toledo', author_email='leandrotoledodesouza@gmail.com', license='LGPLv3', diff --git a/telegram/__init__.py b/telegram/__init__.py index 834b4675f..703905569 100644 --- a/telegram/__init__.py +++ b/telegram/__init__.py @@ -19,7 +19,7 @@ """A library that provides a Python interface to the Telegram Bot API""" __author__ = 'leandrotoledodesouza@gmail.com' -__version__ = '2.8.1' +__version__ = '2.8.2' from .base import TelegramObject from .user import User