mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2025-01-03 09:49:21 +01:00
bump to 4.1.1
This commit is contained in:
parent
4d770843cc
commit
d028d4edd0
4 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
**2016-05-16**
|
||||||
|
|
||||||
|
*Released 4.1.1*
|
||||||
|
|
||||||
|
- Fix deprecation warning in ``Dispatcher``
|
||||||
|
|
||||||
**2016-05-15**
|
**2016-05-15**
|
||||||
|
|
||||||
*Released 4.1*
|
*Released 4.1*
|
||||||
|
|
|
@ -60,7 +60,7 @@ author = u'Leandro Toledo'
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '4.1'
|
version = '4.1'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '4.1'
|
release = '4.1.1'
|
||||||
|
|
||||||
# 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
|
@ -24,7 +24,7 @@ def requirements():
|
||||||
|
|
||||||
|
|
||||||
setup(name='python-telegram-bot',
|
setup(name='python-telegram-bot',
|
||||||
version='4.1',
|
version='4.1.1',
|
||||||
author='Leandro Toledo',
|
author='Leandro Toledo',
|
||||||
author_email='devs@python-telegram-bot.org',
|
author_email='devs@python-telegram-bot.org',
|
||||||
license='LGPLv3',
|
license='LGPLv3',
|
||||||
|
|
|
@ -81,7 +81,7 @@ from .update import Update
|
||||||
from .bot import Bot
|
from .bot import Bot
|
||||||
|
|
||||||
__author__ = 'devs@python-telegram-bot.org'
|
__author__ = 'devs@python-telegram-bot.org'
|
||||||
__version__ = '4.1'
|
__version__ = '4.1.1'
|
||||||
__all__ = ['Audio', 'Bot', 'Chat', 'ChatAction', 'ChosenInlineResult', 'CallbackQuery', 'Contact',
|
__all__ = ['Audio', 'Bot', 'Chat', 'ChatAction', 'ChosenInlineResult', 'CallbackQuery', 'Contact',
|
||||||
'Document', 'Emoji', 'File', 'ForceReply', 'InlineKeyboardButton',
|
'Document', 'Emoji', 'File', 'ForceReply', 'InlineKeyboardButton',
|
||||||
'InlineKeyboardMarkup', 'InlineQuery', 'InlineQueryResult', 'InlineQueryResult',
|
'InlineKeyboardMarkup', 'InlineQuery', 'InlineQueryResult', 'InlineQueryResult',
|
||||||
|
|
Loading…
Reference in a new issue