X Tutup
Skip to content

Commit a1f3535

Browse files
committed
Keep bleeding edge features on testing branch
1 parent c4c17e8 commit a1f3535

File tree

10 files changed

+23
-554
lines changed

10 files changed

+23
-554
lines changed

CHANGES.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
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+
14+
2015-09-05
15+
Released 2.8.2
16+
Fix regression on Telegram ReplyMarkup
17+
Add certificate to is_inputfile method
18+
19+
120
2015-09-05
221
Released 2.8.1
322
Fix regression on Telegram objects with thumb properties

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ _`Contact`
277277

278278
Feel free to join to our `Telegram group <https://telegram.me/joinchat/00b9c0f802509b94d52953d3fa1ec504>`_.
279279

280-
*If you face trouble joining in the group please ping me on Telegram (@leandrotoledo), I'll be glad to add you.*
280+
If you face trouble joining in the group please ping me `via Telegram <https://telegram.me/leandrotoledo>`_, I'll be glad to add you.
281281

282282
=======
283283
_`TODO`

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
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.1'
63+
release = '2.8.3'
6464

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

examples/command_handler_example.py

Lines changed: 0 additions & 87 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 1 deletion
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.1',
18+
version='2.8.3',
1919
author='Leandro Toledo',
2020
author_email='leandrotoledodesouza@gmail.com',
2121
license='LGPLv3',

telegram/__init__.py

Lines changed: 1 addition & 1 deletion
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__ = 'leandrotoledodesouza@gmail.com'
22-
__version__ = '2.8.1'
22+
__version__ = '2.8.3'
2323

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

telegram/command_handler.py

Lines changed: 0 additions & 231 deletions
This file was deleted.

0 commit comments

Comments
 (0)
X Tutup