release v3.1.2

This commit is contained in:
Jannes Höke 2015-12-29 14:46:00 +01:00
parent 41ba57f064
commit fc9456e1a8
4 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,10 @@
**2015-12-29**
*Released 3.1.2*
- Fix custom path for file downloads
- Don't stop the dispatcher thread on uncaught errors in handlers
**2015-12-21** **2015-12-21**
*Released 3.1.1* *Released 3.1.1*

View file

@ -60,7 +60,7 @@ author = u'Leandro Toledo'
# The short X.Y version. # The short X.Y version.
version = '3.1' version = '3.1'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '3.1.1' release = '3.1.2'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View file

@ -26,7 +26,7 @@ def requirements():
setup( setup(
name='python-telegram-bot', name='python-telegram-bot',
version='3.1.1', version='3.1.2',
author='Leandro Toledo', author='Leandro Toledo',
author_email='devs@python-telegram-bot.org', author_email='devs@python-telegram-bot.org',
license='LGPLv3', license='LGPLv3',

View file

@ -19,7 +19,7 @@
"""A library that provides a Python interface to the Telegram Bot API""" """A library that provides a Python interface to the Telegram Bot API"""
__author__ = 'devs@python-telegram-bot.org' __author__ = 'devs@python-telegram-bot.org'
__version__ = '3.1.1' __version__ = '3.1.2'
from .base import TelegramObject from .base import TelegramObject
from .user import User from .user import User