X Tutup
Skip to content

Commit 5738dc5

Browse files
committed
Releasing v2.8.5
1 parent 386acca commit 5738dc5

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2015-09-24
2+
Released 2.8.5
3+
Handles HTTP Bad Gateway (503) errors on request
4+
Fixes regression on Audio and Document for unicode fields
5+
6+
17
2015-09-20
28
Released 2.8.4
39
getFile and File.download is now fully supported

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.4'
63+
release = '2.8.5'
6464

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

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.4',
18+
version='2.8.5',
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.4'
22+
__version__ = '2.8.5'
2323

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

0 commit comments

Comments
 (0)
X Tutup