|
34 | 34 | *Released 2.8.5*
|
35 | 35 |
|
36 | 36 | - Handles HTTP Bad Gateway (503) errors on request
|
37 |
| -- Fixes regression on Audio and Document for unicode fields |
| 37 | +- Fixes regression on ``Audio`` and ``Document`` for unicode fields |
38 | 38 |
|
39 | 39 |
|
40 | 40 | **2015-09-20**
|
41 | 41 |
|
42 | 42 | *Released 2.8.4*
|
43 | 43 |
|
44 |
| -- getFile and File.download is now fully supported |
| 44 | +- ``getFile`` and ``File.download`` is now fully supported |
45 | 45 |
|
46 | 46 |
|
47 | 47 | **2015-09-10**
|
48 | 48 |
|
49 | 49 | *Released 2.8.3*
|
50 | 50 |
|
51 |
| -- Moved Bot._requestURL to its own class (telegram.utils.request) |
| 51 | +- Moved ``Bot._requestURL`` to its own class (``telegram.utils.request``) |
52 | 52 | - Much better, such wow, Telegram Objects tests
|
53 |
| -- Add consistency for str properties on Telegram Objects |
54 |
| -- Better design to test if chat_id is invalid |
55 |
| -- Add ability to set custom filename on Bot.sendDocument(..,filename='') |
56 |
| -- Fix Sticker as InputFile |
| 53 | +- Add consistency for ``str`` properties on Telegram Objects |
| 54 | +- Better design to test if ``chat_id`` is invalid |
| 55 | +- Add ability to set custom filename on ``Bot.sendDocument(..,filename='')`` |
| 56 | +- Fix Sticker as ``InputFile`` |
57 | 57 | - Send JSON requests over urlencoded post data
|
58 |
| -- Markdown support for Bot.sendMessage(..., parse_mode=ParseMode.MARKDOWN) |
59 |
| -- Refactor of TelegramError class (no more handling IOError or URLError) |
| 58 | +- Markdown support for ``Bot.sendMessage(..., parse_mode=ParseMode.MARKDOWN)`` |
| 59 | +- Refactor of ``TelegramError`` class (no more handling ``IOError`` or ``URLError``) |
60 | 60 |
|
61 | 61 |
|
62 | 62 | **2015-09-05**
|
63 | 63 |
|
64 | 64 | *Released 2.8.2*
|
65 | 65 |
|
66 | 66 | - Fix regression on Telegram ReplyMarkup
|
67 |
| -- Add certificate to is_inputfile method |
| 67 | +- Add certificate to ``is_inputfile`` method |
68 | 68 |
|
69 | 69 |
|
70 | 70 | **2015-09-05**
|
|
78 | 78 |
|
79 | 79 | *Released 2.8*
|
80 | 80 |
|
81 |
| -- TelegramError when chat_id is empty for send* methods |
82 |
| -- setWebhook now supports sending self-signed certificate |
| 81 | +- TelegramError when ``chat_id`` is empty for send* methods |
| 82 | +- ``setWebhook`` now supports sending self-signed certificate |
83 | 83 | - Huge redesign of existing Telegram classes
|
84 | 84 | - Added support for PyPy
|
85 | 85 | - Added docstring for existing classes
|
|
89 | 89 |
|
90 | 90 | *Released 2.7.1*
|
91 | 91 |
|
92 |
| -- Fixed JSON serialization for message |
| 92 | +- Fixed JSON serialization for ``message`` |
93 | 93 |
|
94 | 94 |
|
95 | 95 | **2015-08-17**
|
96 | 96 |
|
97 | 97 | *Released 2.7*
|
98 | 98 |
|
99 |
| -- Added support for Voice object and sendVoice method |
100 |
| -- Due backward compatibility performer or/and title will be required for sendAudio |
| 99 | +- Added support for ``Voice`` object and ``sendVoice`` method |
| 100 | +- Due backward compatibility performer or/and title will be required for ``sendAudio`` |
101 | 101 | - Fixed JSON serialization when forwarded message
|
102 | 102 |
|
103 | 103 |
|
|
112 | 112 |
|
113 | 113 | *Released 2.6.0*
|
114 | 114 |
|
115 |
| -- Depreciation of require_authentication and clearCredentials methods |
116 |
| -- Giving AUTHORS the proper credits for their contribution for this project |
117 |
| -- Message.date and Message.forward_date are now datetime objects |
| 115 | +- Depreciation of ``require_authentication`` and ``clearCredentials`` methods |
| 116 | +- Giving ``AUTHORS`` the proper credits for their contribution for this project |
| 117 | +- ``Message.date`` and ``Message.forward_date`` are now ``datetime`` objects |
118 | 118 |
|
119 | 119 |
|
120 | 120 | **2015-08-12**
|
121 | 121 |
|
122 | 122 | *Released 2.5.3*
|
123 | 123 |
|
124 |
| -- telegram.Bot now supports to be unpickled |
| 124 | +- ``telegram.Bot`` now supports to be unpickled |
125 | 125 |
|
126 | 126 |
|
127 | 127 | **2015-08-11**
|
128 | 128 |
|
129 | 129 | *Released 2.5.2*
|
130 | 130 |
|
131 | 131 | - New changes from Telegram Bot API have been applied
|
132 |
| -- telegram.Bot now supports to be pickled |
133 |
| -- Return empty str instead None when message.text is empty |
| 132 | +- ``telegram.Bot`` now supports to be pickled |
| 133 | +- Return empty ``str`` instead ``None`` when ``message.text`` is empty |
134 | 134 |
|
135 | 135 |
|
136 | 136 | **2015-08-10**
|
|
151 | 151 |
|
152 | 152 | *Released 2.4*
|
153 | 153 |
|
154 |
| -- Fixes Emoji class for Python 3 |
155 |
| -- PEP8 improvements |
| 154 | +- Fixes ``Emoji`` class for Python 3 |
| 155 | +- ``PEP8`` improvements |
156 | 156 |
|
157 | 157 |
|
158 | 158 | **2015-08-08**
|
159 | 159 |
|
160 | 160 | *Released 2.3*
|
161 | 161 |
|
162 |
| -- Fixes ForceReply class |
163 |
| -- Remove logging.basicConfig from library |
| 162 | +- Fixes ``ForceReply`` class |
| 163 | +- Remove ``logging.basicConfig`` from library |
164 | 164 |
|
165 | 165 |
|
166 | 166 | **2015-07-25**
|
167 | 167 |
|
168 | 168 | *Released 2.2*
|
169 | 169 |
|
170 |
| -- Allows debug=True when initializing telegram.Bot |
| 170 | +- Allows ``debug=True`` when initializing ``telegram.Bot`` |
171 | 171 |
|
172 | 172 |
|
173 | 173 | **2015-07-20**
|
174 | 174 |
|
175 | 175 | *Released 2.1*
|
176 | 176 |
|
177 |
| -- Fix to_dict for Document and Video |
| 177 | +- Fix ``to_dict`` for ``Document`` and ``Video`` |
178 | 178 |
|
179 | 179 |
|
180 | 180 | **2015-07-19**
|
181 | 181 |
|
182 | 182 | *Released 2.0*
|
183 | 183 |
|
184 | 184 | - Fixes bugs
|
185 |
| -- Improves __str__ over to_json() |
186 |
| -- Creates abstractclass TelegramObject |
| 185 | +- Improves ``__str__`` over ``to_json()`` |
| 186 | +- Creates abstract class ``TelegramObject`` |
187 | 187 |
|
188 | 188 |
|
189 | 189 | **2015-07-15**
|
190 | 190 |
|
191 | 191 | *Released 1.9*
|
192 | 192 |
|
193 | 193 | - Python 3 officially supported
|
194 |
| -- PEP8 improvements |
| 194 | +- ``PEP8`` improvements |
195 | 195 |
|
196 | 196 |
|
197 | 197 | **2015-07-12**
|
|
205 | 205 |
|
206 | 206 | *Released 1.7*
|
207 | 207 |
|
208 |
| -- Fixes crash when username is not defined on chat (special thanks to JRoot3D) |
| 208 | +- Fixes crash when ``username`` is not defined on ``chat`` (special thanks to JRoot3D) |
209 | 209 |
|
210 | 210 |
|
211 | 211 | **2015-07-10**
|
|
219 | 219 |
|
220 | 220 | *Released 1.5*
|
221 | 221 |
|
222 |
| -- Fixes randomly unicode issues when using InputFile |
| 222 | +- Fixes randomly unicode issues when using ``InputFile`` |
223 | 223 |
|
224 | 224 |
|
225 | 225 | **2015-07-10**
|
226 | 226 |
|
227 | 227 | *Released 1.4*
|
228 | 228 |
|
229 |
| -- requests lib is no longer required |
| 229 | +- ``requests`` lib is no longer required |
230 | 230 | - Google App Engine (GAE) is supported
|
231 | 231 |
|
232 | 232 |
|
233 | 233 | **2015-07-10**
|
234 | 234 |
|
235 | 235 | *Released 1.3*
|
236 | 236 |
|
237 |
| -- Added support to setWebhook (special thanks to macrojames) |
| 237 | +- Added support to ``setWebhook`` (special thanks to macrojames) |
238 | 238 |
|
239 | 239 |
|
240 | 240 | **2015-07-09**
|
241 | 241 |
|
242 | 242 | *Released 1.2*
|
243 | 243 |
|
244 |
| -- CustomKeyboard classes now available |
| 244 | +- ``CustomKeyboard`` classes now available |
245 | 245 | - Emojis available
|
246 |
| -- PEP8 improvements |
| 246 | +- ``PEP8`` improvements |
247 | 247 |
|
248 | 248 |
|
249 | 249 | **2015-07-08**
|
|
0 commit comments