X Tutup
Skip to content

Commit ea7c54b

Browse files
committed
Release v3.1.1, change author email everywhere
1 parent 3c7b037 commit ea7c54b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+127
-50
lines changed

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
**2015-12-21**
2+
3+
*Released 3.1.1*
4+
5+
- Fix a bug where asynchronous handlers could not have additional arguments
6+
- Add ``groups`` and ``groupdict`` as additional arguments for regex-based handlers
7+
18
**2015-12-16**
29

310
*Released 3.1.0*

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '3.1'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '3.1.0'
63+
release = '3.1.1'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

examples/echobot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
#
44
# Simple Bot to reply to Telegram messages
5-
# Copyright (C) 2015 Leandro Toledo de Souza <leandrotoeldodesouza@gmail.com>
5+
# Copyright (C) 2015 Leandro Toledo de Souza <devs@python-telegram-bot.org>
66
#
77
# This program is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU General Public License as published by

examples/roboed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# encoding: utf-8
33
#
44
# Robô Ed Telegram Bot
5-
# Copyright (C) 2015 Leandro Toledo de Souza <leandrotoeldodesouza@gmail.com>
5+
# Copyright (C) 2015 Leandro Toledo de Souza <devs@python-telegram-bot.org>
66
#
77
# This program is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU General Public License as published by

examples/updater_bot.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
#
4+
# Simple Bot to reply to Telegram messages
5+
# Copyright (C) 2015 Leandro Toledo de Souza <devs@python-telegram-bot.org>
6+
#
7+
# This program is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU General Public License as published by
9+
# the Free Software Foundation, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# This program is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU General Public License
18+
# along with this program. If not, see [http://www.gnu.org/licenses/].
19+
220

321
"""
422
This Bot uses the Updater class to handle the bot.

examples/updater_simplebot.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
#
4+
# Simple Bot to reply to Telegram messages
5+
# Copyright (C) 2015 Leandro Toledo de Souza <devs@python-telegram-bot.org>
6+
#
7+
# This program is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU General Public License as published by
9+
# the Free Software Foundation, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# This program is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU General Public License
18+
# along with this program. If not, see [http://www.gnu.org/licenses/].
19+
220

321
"""
422
This Bot uses the Updater class to handle the bot.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ def requirements():
2626

2727
setup(
2828
name='python-telegram-bot',
29-
version='3.1.0',
29+
version='3.1.1',
3030
author='Leandro Toledo',
31-
author_email='leandrotoledodesouza@gmail.com',
31+
author_email='devs@python-telegram-bot.org',
3232
license='LGPLv3',
3333
url='https://github.com/python-telegram-bot/python-telegram-bot',
3434
keywords='python telegram bot api wrapper',

telegram/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
#
33
# A library that provides a Python interface to the Telegram Bot API
4-
# Copyright (C) 2015 Leandro Toledo de Souza <leandrotoeldodesouza@gmail.com>
4+
# Copyright (C) 2015 Leandro Toledo de Souza <devs@python-telegram-bot.org>
55
#
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Lesser Public License as published by
@@ -18,8 +18,8 @@
1818

1919
"""A library that provides a Python interface to the Telegram Bot API"""
2020

21-
__author__ = 'leandrotoledodesouza@gmail.com'
22-
__version__ = '3.1.0'
21+
__author__ = 'devs@python-telegram-bot.org'
22+
__version__ = '3.1.1'
2323

2424
from .base import TelegramObject
2525
from .user import User

telegram/audio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
#
33
# A library that provides a Python interface to the Telegram Bot API
4-
# Copyright (C) 2015 Leandro Toledo de Souza <leandrotoeldodesouza@gmail.com>
4+
# Copyright (C) 2015 Leandro Toledo de Souza <devs@python-telegram-bot.org>
55
#
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Lesser Public License as published by

telegram/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
#
33
# A library that provides a Python interface to the Telegram Bot API
4-
# Copyright (C) 2015 Leandro Toledo de Souza <leandrotoeldodesouza@gmail.com>
4+
# Copyright (C) 2015 Leandro Toledo de Souza <devs@python-telegram-bot.org>
55
#
66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU Lesser Public License as published by

0 commit comments

Comments
 (0)
X Tutup