From d028d4edd0e346042058bbd670f99c4b92a7a5d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannes=20H=C3=B6ke?= Date: Mon, 16 May 2016 16:05:02 +0200 Subject: [PATCH] bump to 4.1.1 --- CHANGES.rst | 6 ++++++ docs/source/conf.py | 2 +- setup.py | 2 +- telegram/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 534559e2e..dd6a3ab27 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +**2016-05-16** + +*Released 4.1.1* + +- Fix deprecation warning in ``Dispatcher`` + **2016-05-15** *Released 4.1* diff --git a/docs/source/conf.py b/docs/source/conf.py index 6f5366478..d50db1d56 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,7 +60,7 @@ author = u'Leandro Toledo' # The short X.Y version. version = '4.1' # 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 # for a list of supported languages. diff --git a/setup.py b/setup.py index fa61aa6ee..2307a39f1 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def requirements(): setup(name='python-telegram-bot', - version='4.1', + version='4.1.1', author='Leandro Toledo', author_email='devs@python-telegram-bot.org', license='LGPLv3', diff --git a/telegram/__init__.py b/telegram/__init__.py index 643807f1d..1a3ee76c9 100644 --- a/telegram/__init__.py +++ b/telegram/__init__.py @@ -81,7 +81,7 @@ from .update import Update from .bot import Bot __author__ = 'devs@python-telegram-bot.org' -__version__ = '4.1' +__version__ = '4.1.1' __all__ = ['Audio', 'Bot', 'Chat', 'ChatAction', 'ChosenInlineResult', 'CallbackQuery', 'Contact', 'Document', 'Emoji', 'File', 'ForceReply', 'InlineKeyboardButton', 'InlineKeyboardMarkup', 'InlineQuery', 'InlineQueryResult', 'InlineQueryResult',