Compare commits

..

6 Commits

Author SHA1 Message Date
leandrotoledo 9b3ce5069e Releasing 2.5.3 2015-08-11 23:49:26 -03:00
leandrotoledo f2671ffff3 fix space trailing 2015-08-11 23:46:09 -03:00
Leandro Toledo 3974690b90 Fixes base_url when pickling object 2015-08-11 23:43:40 -03:00
Leandro Toledo 66b3f8bbd3 Adding CONTRIBUTING 2015-08-11 18:24:53 -03:00
Leandro Toledo 140e68dd20 Update README.rst 2015-08-11 18:15:45 -03:00
Leandro Toledo 46cf2c250e Update README.rst 2015-08-11 18:07:32 -03:00
6 changed files with 25 additions and 7 deletions
+5
View File
@@ -1,3 +1,8 @@
2015-08-12
Released 2.5.3
telegram.Bot now supports to be unpickled
2015-08-11
Released 2.5.2
New changes from Telegram Bot API have been applied
View File
+16 -4
View File
@@ -12,6 +12,10 @@ By `Leandro Toledo <leandrotoledodesouza@gmail.com>`_
: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
@@ -44,13 +48,15 @@ Table of contents
- `Getting the code`_
- `Documentation`_
- `Getting started`_
1. `API`_
2. `Logging`_
3. `Examples`_
4. `Documentation`_
- `License`_
@@ -134,9 +140,9 @@ To see other options available, run:
$ make help
================
_`Documentation`
================
==================
_`Getting started`
==================
View the last release API documentation at: https://core.telegram.org/bots/api
@@ -239,6 +245,12 @@ Here follows some examples to help you to get your own Bot up to speed:
- `DevOps Reaction Bot <https://github.com/leandrotoledo/gae-devops-reaction-telegram-bot>`_ sends latest or random posts from `DevOps Reaction <http://devopsreactions.tumblr.com/>`_. Running on `Google App Engine <https://cloud.google.com/appengine>`_ (billing has to be enabled for fully Socket API support).
================
_`Documentation`
================
``python-telegram-bot``'s documentation lives at `Read the Docs <http://python-telegram-bot.readthedocs.org/en/latest/>`_.
==========
_`License`
==========
+1 -1
View File
@@ -15,7 +15,7 @@ def read(*paths):
setup(
name='python-telegram-bot',
version='2.5.2',
version='2.5.3',
author='Leandro Toledo',
author_email='leandrotoledodesouza@gmail.com',
license='LGPLv3',
+1 -1
View File
@@ -18,7 +18,7 @@
__author__ = 'leandrotoledodesouza@gmail.com'
__version__ = '2.5.2'
__version__ = '2.5.3'
from .base import TelegramObject
from .user import User
+2 -1
View File
@@ -675,4 +675,5 @@ class Bot(TelegramObject):
return data
def __reduce__(self):
return (self.__class__, (self.token, self.base_url))
return (self.__class__, (self.token,
self.base_url.replace(self.token, '')))