From bcadfc5398474fae3bc8636ff4ebbbcd203aa55b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannes=20H=C3=B6ke?= Date: Mon, 7 Dec 2015 23:49:19 +0100 Subject: [PATCH] Release version 3.0.0 --- docs/source/conf.py | 4 ++-- setup.py | 2 +- telegram/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index ab68ae745..08d56b930 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -58,9 +58,9 @@ author = u'Leandro Toledo' # built documents. # # The short X.Y version. -version = '2.9' +version = '3.0' # The full version, including alpha/beta/rc tags. -release = '2.9.2' +release = '3.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 317d47da9..1d07a93f6 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def requirements(): setup( name='python-telegram-bot', - version='2.9.2', + version='3.0.0', author='Leandro Toledo', author_email='leandrotoledodesouza@gmail.com', license='LGPLv3', diff --git a/telegram/__init__.py b/telegram/__init__.py index 52f49691d..021301570 100644 --- a/telegram/__init__.py +++ b/telegram/__init__.py @@ -19,7 +19,7 @@ """A library that provides a Python interface to the Telegram Bot API""" __author__ = 'leandrotoledodesouza@gmail.com' -__version__ = '2.8.7' +__version__ = '3.0.0' from .base import TelegramObject from .user import User