mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 22:56:38 +01:00
Releasing 1.8
This commit is contained in:
parent
20b856a05f
commit
4a2c09e0cf
4 changed files with 11 additions and 6 deletions
7
CHANGES
7
CHANGES
|
@ -1,4 +1,9 @@
|
|||
2015-07.11
|
||||
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)
|
||||
|
|
|
@ -21,9 +21,9 @@ Table of contents
|
|||
- `Getting the code`_
|
||||
|
||||
- `Documentation`_
|
||||
|
||||
|
||||
1. `API`_
|
||||
|
||||
|
||||
- `Contact`_
|
||||
|
||||
- `TODO`_
|
||||
|
@ -62,7 +62,7 @@ _`Installing`
|
|||
|
||||
You can install python-telegram-bot using::
|
||||
|
||||
$ pip install python-telegram-bot
|
||||
$ pip install python-telegram-bot --upgrade
|
||||
|
||||
===================
|
||||
_`Getting the code`
|
||||
|
|
2
setup.py
2
setup.py
|
@ -15,7 +15,7 @@ def read(*paths):
|
|||
|
||||
setup(
|
||||
name='python-telegram-bot',
|
||||
version='1.7',
|
||||
version='1.8',
|
||||
author='Leandro Toledo',
|
||||
author_email='leandrotoledodesouza@gmail.com',
|
||||
license='GPLv2',
|
||||
|
|
|
@ -33,7 +33,7 @@ class BotTest(unittest.TestCase):
|
|||
'''Test the telegram.Bot getUpdates method'''
|
||||
print('Testing getUpdates')
|
||||
updates = self._bot.getUpdates()
|
||||
self.assertEqual(129566611, updates[0].update_id)
|
||||
self.assertEqual(129566614, updates[0].update_id)
|
||||
|
||||
def testForwardMessage(self):
|
||||
'''Test the telegram.Bot forwardMessage method'''
|
||||
|
|
Loading…
Reference in a new issue