Releasing 1.9

This commit is contained in:
leandrotoledo 2015-07-15 11:48:33 -03:00
parent 0cf914ab1f
commit acc939b5b9
3 changed files with 20 additions and 2 deletions

13
CHANGES
View file

@ -1,34 +1,47 @@
2015-07-15
Released 1.9
Python 3 officially supported
PEP8 improvements
2015-07-12 2015-07-12
Released 1.8 Released 1.8
Fixes crash when replying an unicode text message (special thanks to JRoot3D) Fixes crash when replying an unicode text message (special thanks to JRoot3D)
2015-07-11 2015-07-11
Released 1.7 Released 1.7
Fixes crash when username is not defined on chat (special thanks to JRoot3D) Fixes crash when username is not defined on chat (special thanks to JRoot3D)
2015-07-10 2015-07-10
Released 1.6 Released 1.6
Improvements for GAE support Improvements for GAE support
2015-07-10 2015-07-10
Released 1.5 Released 1.5
Fixes randomly unicode issues when using InputFile Fixes randomly unicode issues when using InputFile
2015-07-10 2015-07-10
Released 1.4 Released 1.4
requests lib is no longer required requests lib is no longer required
Google App Engine (GAE) is supported Google App Engine (GAE) is supported
2015-07-10 2015-07-10
Released 1.3 Released 1.3
Added support to setWebhook (special thanks to macrojames) Added support to setWebhook (special thanks to macrojames)
2015-07-09 2015-07-09
Released 1.2 Released 1.2

View file

@ -15,7 +15,7 @@ def read(*paths):
setup( setup(
name='python-telegram-bot', name='python-telegram-bot',
version='1.8', version='1.9',
author='Leandro Toledo', author='Leandro Toledo',
author_email='leandrotoledodesouza@gmail.com', author_email='leandrotoledodesouza@gmail.com',
license='GPLv2', license='GPLv2',
@ -34,6 +34,11 @@ setup(
'Topic :: Internet', 'Topic :: Internet',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
], ],
) )

View file

@ -3,7 +3,7 @@
"""A library that provides a Python interface to the Telegram Bots API""" """A library that provides a Python interface to the Telegram Bots API"""
__author__ = 'leandrotoledodesouza@gmail.com' __author__ = 'leandrotoledodesouza@gmail.com'
__version__ = '1.1' __version__ = '1.9'
from .user import User from .user import User
from .message import Message from .message import Message