Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cbdeacd

Browse files
committed
Releasing v2.8.3
1 parent 1e2fded commit cbdeacd

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGES.rst

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2015-09-10
2+
Released 2.8.3
3+
Moved Bot._requestURL to its own class (telegram.utils.request)
4+
Much better, such wow, Telegram Objects tests
5+
Add consistency for str properties on Telegram Objects
6+
Better design to test if chat_id is invalid
7+
Add ability to set custom filename on Bot.sendDocument(..,filename='')
8+
Fix Sticker as InputFile
9+
Send JSON requests over urlencoded post data
10+
Markdown support for Bot.sendMessage(..., parse_mode=ParseMode.MARKDOWN)
11+
Refactor of TelegramError class (no more handling IOError or URLError)
12+
13+
114
2015-09-05
215
Released 2.8.2
316
Fix regression on Telegram ReplyMarkup

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '2.8'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '2.8.2'
63+
release = '2.8.3'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def read(*paths):
1515

1616
setup(
1717
name='python-telegram-bot',
18-
version='2.8.2',
18+
version='2.8.3',
1919
author='Leandro Toledo',
2020
author_email='[email protected]',
2121
license='LGPLv3',

telegram/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"""A library that provides a Python interface to the Telegram Bot API"""
2020

2121
__author__ = '[email protected]'
22-
__version__ = '2.8.2'
22+
__version__ = '2.8.3'
2323

2424
from .base import TelegramObject
2525
from .user import User

0 commit comments

Comments
 (0)