X Tutup
Skip to content

Commit 0e78606

Browse files
committed
Release v3.1
1 parent cb0736f commit 0e78606

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
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-16**
2+
3+
*Released 3.1.0*
4+
5+
- The ``chat``-field in ``Message`` is now of type ``Chat``. (API update Oct 8 2015)
6+
- ``Message`` now contains the optional fields ``supergroup_chat_created``, ``migrate_to_chat_id``, ``migrate_from_chat_id`` and ``channel_chat_created``. (API update Nov 2015)
7+
18
**2015-12-08**
29

310
*Released 3.0.0*

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '3.0'
61+
version = '3.1'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '3.0.0'
63+
release = '3.1.0'
6464

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def requirements():
2626

2727
setup(
2828
name='python-telegram-bot',
29-
version='3.0.0',
29+
version='3.1.0',
3030
author='Leandro Toledo',
3131
author_email='leandrotoledodesouza@gmail.com',
3232
license='LGPLv3',

telegram/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"""A library that provides a Python interface to the Telegram Bot API"""
2020

2121
__author__ = 'leandrotoledodesouza@gmail.com'
22-
__version__ = '3.0.0'
22+
__version__ = '3.1.0'
2323

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

0 commit comments

Comments
 (0)
X Tutup