diff --git a/CHANGES b/CHANGES index b27555818..9db150260 100644 --- a/CHANGES +++ b/CHANGES @@ -1,34 +1,47 @@ +2015-07-15 + + Released 1.9 + Python 3 officially supported + PEP8 improvements + + 2015-07-12 Released 1.8 Fixes crash when replying an unicode text message (special thanks to JRoot3D) + 2015-07-11 Released 1.7 Fixes crash when username is not defined on chat (special thanks to JRoot3D) + 2015-07-10 Released 1.6 Improvements for GAE support + 2015-07-10 Released 1.5 Fixes randomly unicode issues when using InputFile + 2015-07-10 Released 1.4 requests lib is no longer required Google App Engine (GAE) is supported + 2015-07-10 Released 1.3 Added support to setWebhook (special thanks to macrojames) + 2015-07-09 Released 1.2 diff --git a/setup.py b/setup.py index c3a9ed1de..7782641e2 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def read(*paths): setup( name='python-telegram-bot', - version='1.8', + version='1.9', author='Leandro Toledo', author_email='leandrotoledodesouza@gmail.com', license='GPLv2', @@ -34,6 +34,11 @@ setup( 'Topic :: Internet', 'Programming Language :: Python', 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', ], ) diff --git a/telegram/__init__.py b/telegram/__init__.py index 072c9876b..bde7294f5 100644 --- a/telegram/__init__.py +++ b/telegram/__init__.py @@ -3,7 +3,7 @@ """A library that provides a Python interface to the Telegram Bots API""" __author__ = 'leandrotoledodesouza@gmail.com' -__version__ = '1.1' +__version__ = '1.9' from .user import User from .message import Message