X Tutup
Skip to content

Commit c6533a2

Browse files
committed
Releasing v2.9
1 parent 6c13762 commit c6533a2

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

CHANGES.rst

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2015-11-10
2+
Released 2.9
3+
Emoji class now uses bytes_to_native_str from future 3rd party lib
4+
Make user_from optional to work with channels channels
5+
Raise exception if Telegram times out on long-polling
6+
*Special thanks to @jh0ker for all hard work*
7+
8+
19
2015-10-08
210
Released 2.8.7
311
Type as optional for GroupChat class
@@ -121,72 +129,61 @@
121129

122130

123131
2015-07-19
124-
125132
Released 2.0
126133
Fixes bugs
127134
Improves __str__ over to_json()
128135
Creates abstractclass TelegramObject
129136

130137

131138
2015-07-15
132-
133139
Released 1.9
134140
Python 3 officially supported
135141
PEP8 improvements
136142

137143

138144
2015-07-12
139-
140145
Released 1.8
141146
Fixes crash when replying an unicode text message (special thanks to JRoot3D)
142147

143148

144149
2015-07-11
145-
146150
Released 1.7
147151
Fixes crash when username is not defined on chat (special thanks to JRoot3D)
148152

149153

150154
2015-07-10
151-
152155
Released 1.6
153156
Improvements for GAE support
154157

155158

156159
2015-07-10
157-
158160
Released 1.5
159161
Fixes randomly unicode issues when using InputFile
160162

161163

162164
2015-07-10
163-
164165
Released 1.4
165166
requests lib is no longer required
166167
Google App Engine (GAE) is supported
167168

168169

169170
2015-07-10
170-
171171
Released 1.3
172172
Added support to setWebhook (special thanks to macrojames)
173173

174174

175175
2015-07-09
176-
177176
Released 1.2
178177
CustomKeyboard classes now available
179178
Emojis available
180179
PEP8 improvements
181180

182181

183182
2015-07-08
184-
185183
Released 1.1
186184
PyPi package now available
187185

188186

189187
2015-07-08
190-
191188
Released 1.0
192189
Initial checkin of python-telegram-bot

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '2.8'
61+
version = '2.9'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '2.8.7'
63+
release = '2.9'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

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='2.8.7',
18+
version='2.9',
1919
author='Leandro Toledo',
2020
author_email='leandrotoledodesouza@gmail.com',
2121
license='LGPLv3',

0 commit comments

Comments
 (0)
X Tutup