Skip to content

Commit fc9456e

Browse files
committed
release v3.1.2
1 parent 41ba57f commit fc9456e

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
**2015-12-29**
2+
3+
*Released 3.1.2*
4+
5+
- Fix custom path for file downloads
6+
- Don't stop the dispatcher thread on uncaught errors in handlers
7+
18
**2015-12-21**
29

310
*Released 3.1.1*

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 = '3.1'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '3.1.1'
63+
release = '3.1.2'
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
@@ -26,7 +26,7 @@ def requirements():
2626

2727
setup(
2828
name='python-telegram-bot',
29-
version='3.1.1',
29+
version='3.1.2',
3030
author='Leandro Toledo',
3131
author_email='devs@python-telegram-bot.org',
3232
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__ = 'devs@python-telegram-bot.org'
22-
__version__ = '3.1.1'
22+
__version__ = '3.1.2'
2323

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

0 commit comments

Comments
 (0)