X Tutup
Skip to content

Commit acc939b

Browse files
committed
Releasing 1.9
1 parent 0cf914a commit acc939b

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGES

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,47 @@
1+
2015-07-15
2+
3+
Released 1.9
4+
Python 3 officially supported
5+
PEP8 improvements
6+
7+
18
2015-07-12
29

310
Released 1.8
411
Fixes crash when replying an unicode text message (special thanks to JRoot3D)
512

13+
614
2015-07-11
715

816
Released 1.7
917
Fixes crash when username is not defined on chat (special thanks to JRoot3D)
1018

19+
1120
2015-07-10
1221

1322
Released 1.6
1423
Improvements for GAE support
1524

25+
1626
2015-07-10
1727

1828
Released 1.5
1929
Fixes randomly unicode issues when using InputFile
2030

31+
2132
2015-07-10
2233

2334
Released 1.4
2435
requests lib is no longer required
2536
Google App Engine (GAE) is supported
2637

38+
2739
2015-07-10
2840

2941
Released 1.3
3042
Added support to setWebhook (special thanks to macrojames)
3143

44+
3245
2015-07-09
3346

3447
Released 1.2

setup.py

Lines changed: 6 additions & 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.8',
18+
version='1.9',
1919
author='Leandro Toledo',
2020
author_email='leandrotoledodesouza@gmail.com',
2121
license='GPLv2',
@@ -34,6 +34,11 @@ def read(*paths):
3434
'Topic :: Internet',
3535
'Programming Language :: Python',
3636
'Programming Language :: Python :: 2',
37+
'Programming Language :: Python :: 2.6',
3738
'Programming Language :: Python :: 2.7',
39+
'Programming Language :: Python :: 3',
40+
'Programming Language :: Python :: 3.2',
41+
'Programming Language :: Python :: 3.3',
42+
'Programming Language :: Python :: 3.4',
3843
],
3944
)

telegram/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""A library that provides a Python interface to the Telegram Bots API"""
44

55
__author__ = 'leandrotoledodesouza@gmail.com'
6-
__version__ = '1.1'
6+
__version__ = '1.9'
77

88
from .user import User
99
from .message import Message

0 commit comments

Comments
 (0)
X Tutup