X Tutup
Skip to content

Commit f2b0cb4

Browse files
committed
Releasing v2.8.6
1 parent cf5d184 commit f2b0cb4

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2015-10-08
2+
Released 2.8.6
3+
Adds type to User and GroupChat classes (pre-release Telegram feature)
4+
5+
16
2015-09-24
27
Released 2.8.5
38
Handles HTTP Bad Gateway (503) errors on request

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.5'
63+
release = '2.8.6'
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.5',
18+
version='2.8.6',
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.5'
22+
__version__ = '2.8.6'
2323

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

0 commit comments

Comments
 (0)
X Tutup