X Tutup
Skip to content

Commit 808945b

Browse files
committed
prepare release of v3.4
1 parent 63a83d4 commit 808945b

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGES.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
**2016-03-22**
2+
3+
*Released 3.4*
4+
5+
- Move ``Updater``, ``Dispatcher`` and ``JobQueue`` to new ``telegram.ext`` submodule (thanks to @rahiel)
6+
- Add ``disable_notification`` parameter (thanks to @aidarbiktimirov)
7+
- Fix bug where commands sent by Telegram Web would not be recognized (thanks to @shelomentsevd)
8+
- Add option to skip old updates on bot startup
9+
- Send files from ``BufferedReader``
10+
111
**2016-02-28**
212

313
*Released 3.3*

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 = '3.3'
61+
version = '3.4'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '3.3.0'
63+
release = '3.4.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.3',
29+
version='3.4',
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
@@ -85,7 +85,7 @@ def JobQueue(*args, **kwargs):
8585

8686

8787
__author__ = 'devs@python-telegram-bot.org'
88-
__version__ = '3.3'
88+
__version__ = '3.4'
8989
__all__ = ('Audio', 'Bot', 'Chat', 'Emoji', 'TelegramError', 'InputFile',
9090
'Contact', 'ForceReply', 'ReplyKeyboardHide', 'ReplyKeyboardMarkup',
9191
'UserProfilePhotos', 'ChatAction', 'Location', 'Video', 'Document',

0 commit comments

Comments
 (0)
X Tutup