From 8746222cf65040fe0297a2801e6af1210c941064 Mon Sep 17 00:00:00 2001 From: leandrotoledo Date: Wed, 19 Aug 2015 16:16:06 -0300 Subject: [PATCH] Releasing v2.7.1 --- CHANGES | 9 +++++++-- setup.py | 2 +- telegram/__init__.py | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 4ab4e5ff2..e992952b8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,13 @@ +2015-08-19 + Released 2.7.1 + Fixed JSON serialization for message + + 2015-08-17 - Release 2.7 + Released 2.7 Added support for Voice object and sendVoice method Due backward compatibility performer or/and title will be required for sendAudio - Fixed JSON serialization when forwared message + Fixed JSON serialization when forwarded message 2015-08-15 diff --git a/setup.py b/setup.py index 87126e5e2..d6ef32a52 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def read(*paths): setup( name='python-telegram-bot', - version='2.7', + version='2.7.1', author='Leandro Toledo', author_email='leandrotoledodesouza@gmail.com', license='LGPLv3', diff --git a/telegram/__init__.py b/telegram/__init__.py index 7cc46141a..dcc3e6c08 100644 --- a/telegram/__init__.py +++ b/telegram/__init__.py @@ -18,7 +18,7 @@ __author__ = 'leandrotoledodesouza@gmail.com' -__version__ = '2.7' +__version__ = '2.7.1' from .base import TelegramObject from .user import User