mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-12-22 14:35:00 +01:00
release v3.1.2
This commit is contained in:
parent
41ba57f064
commit
fc9456e1a8
4 changed files with 10 additions and 3 deletions
|
@ -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*
|
||||||
|
|
|
@ -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.
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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',
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue