From bb8411327222c0979abe259c0916d599c990a562 Mon Sep 17 00:00:00 2001 From: leandrotoledo Date: Fri, 4 Sep 2015 18:19:05 -0300 Subject: [PATCH] Releasing 2.8 --- CHANGES.rst | 9 +++++++++ README.rst | 12 +++++++----- docs/source/conf.py | 4 ++-- setup.py | 2 +- telegram/__init__.py | 2 +- 5 files changed, 20 insertions(+), 9 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index e992952b8..68c922e6b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,12 @@ +2015-09-04 + Released 2.8 + TelegramError when chat_id is empty for send* methods + setWebhook now supports sending self-signed certificate + Huge redesign of existing Telegram classes + Added support for PyPy + Added docstring for existing classes + + 2015-08-19 Released 2.7.1 Fixed JSON serialization for message diff --git a/README.rst b/README.rst index 48fcc529b..53c3f9795 100644 --- a/README.rst +++ b/README.rst @@ -7,15 +7,15 @@ By `Leandro Toledo `_ .. image:: https://img.shields.io/pypi/v/python-telegram-bot.svg :target: https://pypi.python.org/pypi/python-telegram-bot :alt: PyPi Package Version - + .. image:: https://img.shields.io/pypi/dm/python-telegram-bot.svg :target: https://pypi.python.org/pypi/python-telegram-bot :alt: PyPi Package Monthly Download - + .. image:: https://readthedocs.org/projects/python-telegram-bot/badge/?version=latest :target: https://readthedocs.org/projects/python-telegram-bot/?badge=latest :alt: Documentation Status - + .. image:: https://img.shields.io/github/license/leandrotoledo/python-telegram-bot.svg :target: http://www.gnu.org/licenses/lgpl-3.0.html :alt: LGPLv3 License @@ -27,7 +27,7 @@ By `Leandro Toledo `_ .. image:: https://codeclimate.com/github/leandrotoledo/python-telegram-bot/badges/gpa.svg :target: https://codeclimate.com/github/leandrotoledo/python-telegram-bot :alt: Code Climate - + .. image:: https://coveralls.io/repos/leandrotoledo/python-telegram-bot/badge.svg?branch=master&service=github :target: https://coveralls.io/github/leandrotoledo/python-telegram-bot?branch=master :alt: Coveralls @@ -55,7 +55,7 @@ Table of contents 2. `Logging`_ 3. `Examples`_ - + 4. `Documentation`_ - `License`_ @@ -108,6 +108,8 @@ Python Version *Supported?* 2.7 Yes 3.3 Yes 3.4 Yes +PyPy Yes +PyPy3 Yes ============== ============ ============= diff --git a/docs/source/conf.py b/docs/source/conf.py index 0324335f0..4c81a4c35 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.5' +version = '2.8' # The full version, including alpha/beta/rc tags. -release = '2.5.1' +release = '2.8' # 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 d6ef32a52..4591584e7 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def read(*paths): setup( name='python-telegram-bot', - version='2.7.1', + version='2.8', author='Leandro Toledo', author_email='leandrotoledodesouza@gmail.com', license='LGPLv3', diff --git a/telegram/__init__.py b/telegram/__init__.py index 78e0dad8c..0c071c934 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.7.1' +__version__ = '2.8' from .base import TelegramObject from .user import User