X Tutup
Skip to content

Commit 218e226

Browse files
committed
Prepare to release v3.3
1 parent 75c6662 commit 218e226

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGES.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
**2016-02-28**
2+
3+
*Released 3.3*
4+
5+
- Inline bots
6+
- Send any file by URL
7+
- Specialized exceptions: ``Unauthorized``, ``InvalidToken``, ``NetworkError`` and ``TimedOut``
8+
- Integration for botan.io (thanks to @ollmer)
9+
- HTML Parsemode (thanks to @jlmadurga)
10+
- Bugfixes and under-the-hood improvements
11+
12+
**Very special thanks to Noam Meltzer (@tsnoam) for all of his work!**
13+
114
**2016-01-09**
215

316
*Released 3.3b1*

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '3.3'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '3.3b1'
63+
release = '3.3.0'
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
@@ -26,7 +26,7 @@ def requirements():
2626

2727
setup(
2828
name='python-telegram-bot',
29-
version='3.3b1',
29+
version='3.3',
3030
author='Leandro Toledo',
3131
author_email='devs@python-telegram-bot.org',
3232
license='LGPLv3',

telegram/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757

5858
__author__ = 'devs@python-telegram-bot.org'
59-
__version__ = '3.3b1'
59+
__version__ = '3.3'
6060
__all__ = ('Bot', 'Updater', 'Dispatcher', 'Emoji', 'TelegramError',
6161
'InputFile', 'ReplyMarkup', 'ForceReply', 'ReplyKeyboardHide',
6262
'ReplyKeyboardMarkup', 'UserProfilePhotos', 'ChatAction',

0 commit comments

Comments
 (0)
X Tutup