From aa8966832b63e9d77ed6db0ac36758b5f372d5b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannes=20H=C3=B6ke?= Date: Tue, 5 Jan 2016 14:12:03 +0100 Subject: [PATCH] release 3.2 and update copyright notice to 2015-2016 --- CHANGES.rst | 9 +++++++++ docs/source/conf.py | 6 +++--- setup.py | 2 +- telegram/__init__.py | 5 +++-- telegram/audio.py | 3 ++- telegram/base.py | 3 ++- telegram/bot.py | 3 ++- telegram/chat.py | 3 ++- telegram/chataction.py | 3 ++- telegram/contact.py | 3 ++- telegram/dispatcher.py | 3 ++- telegram/document.py | 3 ++- telegram/emoji.py | 3 ++- telegram/error.py | 3 ++- telegram/file.py | 3 ++- telegram/forcereply.py | 3 ++- telegram/inputfile.py | 3 ++- telegram/jobqueue.py | 3 ++- telegram/location.py | 3 ++- telegram/message.py | 3 ++- telegram/nullhandler.py | 3 ++- telegram/parsemode.py | 3 ++- telegram/photosize.py | 3 ++- telegram/replykeyboardhide.py | 3 ++- telegram/replykeyboardmarkup.py | 3 ++- telegram/replymarkup.py | 3 ++- telegram/sticker.py | 3 ++- telegram/update.py | 3 ++- telegram/updater.py | 3 ++- telegram/user.py | 3 ++- telegram/userprofilephotos.py | 3 ++- telegram/utils/request.py | 3 ++- telegram/video.py | 3 ++- telegram/voice.py | 3 ++- tests/base.py | 3 ++- tests/test_audio.py | 3 ++- tests/test_bot.py | 3 ++- tests/test_chat.py | 3 ++- tests/test_contact.py | 3 ++- tests/test_document.py | 3 ++- tests/test_emoji.py | 3 ++- tests/test_file.py | 3 ++- tests/test_jobqueue.py | 3 ++- tests/test_location.py | 3 ++- tests/test_sticker.py | 3 ++- tests/test_update.py | 3 ++- tests/test_updater.py | 3 ++- tests/test_user.py | 3 ++- tests/test_video.py | 3 ++- tests/test_voice.py | 3 ++- 50 files changed, 108 insertions(+), 52 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 2f0773177..07db7988d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,12 @@ +**2016-01-05** + +*Released 3.2.0* + +- Introducing ``JobQueue`` (original author: @franciscod) +- Streamlining all exceptions to ``TelegramError`` (Special thanks to @tsnoam) +- Proper locking of ``Updater`` and ``Dispatcher`` ``start`` and ``stop`` methods +- Small bugfixes + **2015-12-29** *Released 3.1.2* diff --git a/docs/source/conf.py b/docs/source/conf.py index 6c8ca80bf..067dd71bd 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -50,7 +50,7 @@ master_doc = 'index' # General information about the project. project = u'Python Telegram Bot' -copyright = u'2015, Leandro Toledo' +copyright = u'2015-2016, Leandro Toledo' author = u'Leandro Toledo' # The version info for the project you're documenting, acts as replacement for @@ -58,9 +58,9 @@ author = u'Leandro Toledo' # built documents. # # The short X.Y version. -version = '3.1' +version = '3.2' # The full version, including alpha/beta/rc tags. -release = '3.1.2' +release = '3.2.0' # 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 083904989..e0cc49c0a 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def requirements(): setup( name='python-telegram-bot', - version='3.1.2', + version='3.2.0', author='Leandro Toledo', author_email='devs@python-telegram-bot.org', license='LGPLv3', diff --git a/telegram/__init__.py b/telegram/__init__.py index 45c486559..d35258811 100644 --- a/telegram/__init__.py +++ b/telegram/__init__.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by @@ -19,7 +20,7 @@ """A library that provides a Python interface to the Telegram Bot API""" __author__ = 'devs@python-telegram-bot.org' -__version__ = '3.1.2' +__version__ = '3.2.0' from .base import TelegramObject from .user import User diff --git a/telegram/audio.py b/telegram/audio.py index 33cb42c0a..7ecf162c3 100644 --- a/telegram/audio.py +++ b/telegram/audio.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/base.py b/telegram/base.py index 20adcbdf0..09c5b763c 100644 --- a/telegram/base.py +++ b/telegram/base.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/bot.py b/telegram/bot.py index e520cb5b4..d7080798b 100644 --- a/telegram/bot.py +++ b/telegram/bot.py @@ -2,7 +2,8 @@ # pylint: disable=E0611,E0213,E1102,C0103,E1101,W0613,R0913,R0904 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/chat.py b/telegram/chat.py index 975c4b602..00e2d4142 100644 --- a/telegram/chat.py +++ b/telegram/chat.py @@ -2,7 +2,8 @@ # pylint: disable=C0103,W0622 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/chataction.py b/telegram/chataction.py index e08dc4047..f30a89ba7 100644 --- a/telegram/chataction.py +++ b/telegram/chataction.py @@ -2,7 +2,8 @@ # pylint: disable=R0903 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/contact.py b/telegram/contact.py index 9a5ba65c3..8ffa8028b 100644 --- a/telegram/contact.py +++ b/telegram/contact.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/dispatcher.py b/telegram/dispatcher.py index b47410443..1fe997299 100644 --- a/telegram/dispatcher.py +++ b/telegram/dispatcher.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/document.py b/telegram/document.py index 215828a8f..8c05d570c 100644 --- a/telegram/document.py +++ b/telegram/document.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/emoji.py b/telegram/emoji.py index e58f319cb..636f0d38f 100644 --- a/telegram/emoji.py +++ b/telegram/emoji.py @@ -3,7 +3,8 @@ # pylint: disable=C0103,C0301,R0903 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/error.py b/telegram/error.py index b24bffc8d..885c8a33f 100644 --- a/telegram/error.py +++ b/telegram/error.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/file.py b/telegram/file.py index 280ca2c8c..b625353e9 100644 --- a/telegram/file.py +++ b/telegram/file.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/forcereply.py b/telegram/forcereply.py index e1bdcbe78..83fc8ae76 100644 --- a/telegram/forcereply.py +++ b/telegram/forcereply.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/inputfile.py b/telegram/inputfile.py index d8874ec95..7c43bfd72 100644 --- a/telegram/inputfile.py +++ b/telegram/inputfile.py @@ -2,7 +2,8 @@ # pylint: disable=W0622,E0611 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/jobqueue.py b/telegram/jobqueue.py index 429a39b00..e5c63c82f 100644 --- a/telegram/jobqueue.py +++ b/telegram/jobqueue.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/location.py b/telegram/location.py index e04d0074f..c1ef1b10a 100644 --- a/telegram/location.py +++ b/telegram/location.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/message.py b/telegram/message.py index d35de5430..3cabcad51 100644 --- a/telegram/message.py +++ b/telegram/message.py @@ -2,7 +2,8 @@ # pylint: disable=R0902,R0912,R0913 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/nullhandler.py b/telegram/nullhandler.py index 1316762a1..12aefebac 100644 --- a/telegram/nullhandler.py +++ b/telegram/nullhandler.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/parsemode.py b/telegram/parsemode.py index 2417a3f8c..7e86fb695 100644 --- a/telegram/parsemode.py +++ b/telegram/parsemode.py @@ -2,7 +2,8 @@ # pylint: disable=R0903 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/photosize.py b/telegram/photosize.py index 30b53540a..8ea55b8c7 100644 --- a/telegram/photosize.py +++ b/telegram/photosize.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/replykeyboardhide.py b/telegram/replykeyboardhide.py index 5791b587d..f24fdcf95 100644 --- a/telegram/replykeyboardhide.py +++ b/telegram/replykeyboardhide.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/replykeyboardmarkup.py b/telegram/replykeyboardmarkup.py index beee4478d..0b9530994 100644 --- a/telegram/replykeyboardmarkup.py +++ b/telegram/replykeyboardmarkup.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/replymarkup.py b/telegram/replymarkup.py index 461b38884..bbf474555 100644 --- a/telegram/replymarkup.py +++ b/telegram/replymarkup.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/sticker.py b/telegram/sticker.py index 831e70953..0af7e9701 100644 --- a/telegram/sticker.py +++ b/telegram/sticker.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/update.py b/telegram/update.py index fc8d15d6d..4df1076d3 100644 --- a/telegram/update.py +++ b/telegram/update.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/updater.py b/telegram/updater.py index bdb33236f..94c15fafe 100644 --- a/telegram/updater.py +++ b/telegram/updater.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/user.py b/telegram/user.py index 55ff9e41c..2562e1151 100644 --- a/telegram/user.py +++ b/telegram/user.py @@ -2,7 +2,8 @@ # pylint: disable=C0103,W0622 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/userprofilephotos.py b/telegram/userprofilephotos.py index 16487b0e3..85c0875a9 100644 --- a/telegram/userprofilephotos.py +++ b/telegram/userprofilephotos.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/utils/request.py b/telegram/utils/request.py index a81c04af8..63059a704 100644 --- a/telegram/utils/request.py +++ b/telegram/utils/request.py @@ -2,7 +2,8 @@ # pylint: disable=no-name-in-module,unused-import # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/video.py b/telegram/video.py index 0e5981caa..e5eb7b6a6 100644 --- a/telegram/video.py +++ b/telegram/video.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/telegram/voice.py b/telegram/voice.py index fda9fe8e7..7f84fbb99 100644 --- a/telegram/voice.py +++ b/telegram/voice.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser Public License as published by diff --git a/tests/base.py b/tests/base.py index b63d7eefa..398f64bad 100644 --- a/tests/base.py +++ b/tests/base.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_audio.py b/tests/test_audio.py index d6277cbcc..03163af05 100644 --- a/tests/test_audio.py +++ b/tests/test_audio.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_bot.py b/tests/test_bot.py index 3bb18213b..c70d854d4 100644 --- a/tests/test_bot.py +++ b/tests/test_bot.py @@ -2,7 +2,8 @@ # encoding: utf-8 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_chat.py b/tests/test_chat.py index a9eeea54f..de8eec90a 100644 --- a/tests/test_chat.py +++ b/tests/test_chat.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_contact.py b/tests/test_contact.py index a0c24fb01..ccb7805e9 100644 --- a/tests/test_contact.py +++ b/tests/test_contact.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_document.py b/tests/test_document.py index 79b7104ad..dd778dff0 100644 --- a/tests/test_document.py +++ b/tests/test_document.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_emoji.py b/tests/test_emoji.py index a90243e26..c8245af44 100644 --- a/tests/test_emoji.py +++ b/tests/test_emoji.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_file.py b/tests/test_file.py index 786d4f233..97864bd61 100644 --- a/tests/test_file.py +++ b/tests/test_file.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_jobqueue.py b/tests/test_jobqueue.py index c71481577..0749a6980 100644 --- a/tests/test_jobqueue.py +++ b/tests/test_jobqueue.py @@ -2,7 +2,8 @@ # encoding: utf-8 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_location.py b/tests/test_location.py index 3407f6ad2..cdc281af8 100644 --- a/tests/test_location.py +++ b/tests/test_location.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_sticker.py b/tests/test_sticker.py index 5b78f4762..aafa0b23c 100644 --- a/tests/test_sticker.py +++ b/tests/test_sticker.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_update.py b/tests/test_update.py index ee6a4ecfe..c03c53a8a 100644 --- a/tests/test_update.py +++ b/tests/test_update.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_updater.py b/tests/test_updater.py index f73d1fa8d..7e42da625 100644 --- a/tests/test_updater.py +++ b/tests/test_updater.py @@ -2,7 +2,8 @@ # encoding: utf-8 # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_user.py b/tests/test_user.py index cedf5151f..855ab08b9 100644 --- a/tests/test_user.py +++ b/tests/test_user.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_video.py b/tests/test_video.py index dcfdfa407..925ef619a 100644 --- a/tests/test_video.py +++ b/tests/test_video.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tests/test_voice.py b/tests/test_voice.py index 619121c41..f5ab8b706 100644 --- a/tests/test_voice.py +++ b/tests/test_voice.py @@ -1,7 +1,8 @@ #!/usr/bin/env python # # A library that provides a Python interface to the Telegram Bot API -# Copyright (C) 2015 Leandro Toledo de Souza +# Copyright (C) 2015-2016 +# Leandro Toledo de Souza # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by