X Tutup
Skip to content

Commit 4a2c09e

Browse files
committed
Releasing 1.8
1 parent 20b856a commit 4a2c09e

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGES

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
2015-07.11
1+
2015-07-12
2+
3+
Released 1.8
4+
Fixes crash when replying an unicode text message (special thanks to JRoot3D)
5+
6+
2015-07-11
27

38
Released 1.7
49
Fixes crash when username is not defined on chat (special thanks to JRoot3D)

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ Table of contents
2121
- `Getting the code`_
2222

2323
- `Documentation`_
24-
24+
2525
1. `API`_
26-
26+
2727
- `Contact`_
2828

2929
- `TODO`_
@@ -62,7 +62,7 @@ _`Installing`
6262

6363
You can install python-telegram-bot using::
6464

65-
$ pip install python-telegram-bot
65+
$ pip install python-telegram-bot --upgrade
6666

6767
===================
6868
_`Getting the code`

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def read(*paths):
1515

1616
setup(
1717
name='python-telegram-bot',
18-
version='1.7',
18+
version='1.8',
1919
author='Leandro Toledo',
2020
author_email='leandrotoledodesouza@gmail.com',
2121
license='GPLv2',

tests/test_bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def testGetUpdates(self):
3333
'''Test the telegram.Bot getUpdates method'''
3434
print('Testing getUpdates')
3535
updates = self._bot.getUpdates()
36-
self.assertEqual(129566611, updates[0].update_id)
36+
self.assertEqual(129566614, updates[0].update_id)
3737

3838
def testForwardMessage(self):
3939
'''Test the telegram.Bot forwardMessage method'''

0 commit comments

Comments
 (0)
X Tutup