mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-12-22 14:35:00 +01:00
Releasing v2.8.3
This commit is contained in:
parent
1e2fdedc45
commit
cbdeacd22d
4 changed files with 16 additions and 3 deletions
13
CHANGES.rst
13
CHANGES.rst
|
@ -1,3 +1,16 @@
|
||||||
|
2015-09-10
|
||||||
|
Released 2.8.3
|
||||||
|
Moved Bot._requestURL to its own class (telegram.utils.request)
|
||||||
|
Much better, such wow, Telegram Objects tests
|
||||||
|
Add consistency for str properties on Telegram Objects
|
||||||
|
Better design to test if chat_id is invalid
|
||||||
|
Add ability to set custom filename on Bot.sendDocument(..,filename='')
|
||||||
|
Fix Sticker as InputFile
|
||||||
|
Send JSON requests over urlencoded post data
|
||||||
|
Markdown support for Bot.sendMessage(..., parse_mode=ParseMode.MARKDOWN)
|
||||||
|
Refactor of TelegramError class (no more handling IOError or URLError)
|
||||||
|
|
||||||
|
|
||||||
2015-09-05
|
2015-09-05
|
||||||
Released 2.8.2
|
Released 2.8.2
|
||||||
Fix regression on Telegram ReplyMarkup
|
Fix regression on Telegram ReplyMarkup
|
||||||
|
|
|
@ -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.2'
|
release = '2.8.3'
|
||||||
|
|
||||||
# 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.
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -15,7 +15,7 @@ def read(*paths):
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='python-telegram-bot',
|
name='python-telegram-bot',
|
||||||
version='2.8.2',
|
version='2.8.3',
|
||||||
author='Leandro Toledo',
|
author='Leandro Toledo',
|
||||||
author_email='leandrotoledodesouza@gmail.com',
|
author_email='leandrotoledodesouza@gmail.com',
|
||||||
license='LGPLv3',
|
license='LGPLv3',
|
||||||
|
|
|
@ -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.2'
|
__version__ = '2.8.3'
|
||||||
|
|
||||||
from .base import TelegramObject
|
from .base import TelegramObject
|
||||||
from .user import User
|
from .user import User
|
||||||
|
|
Loading…
Reference in a new issue