Skip to content

Commit 94a9b7f

Browse files
committed
Bump version to v13.5
1 parent bae57c7 commit 94a9b7f

3 files changed

Lines changed: 47 additions & 3 deletions

File tree

CHANGES.rst

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,50 @@
22
Changelog
33
=========
44

5+
Version 13.5
6+
============
7+
*Released 2021-04-30*
8+
9+
**Major Changes:**
10+
11+
- Full support of Bot API 5.2 (`#2489`_).
12+
13+
.. note::
14+
The ``start_parameter`` argument of ``Bot.send_invoice`` and the corresponding shortcuts is now optional, so the order of
15+
parameters had to be changed. Make sure to update your method calls accordingly.
16+
17+
- Update ``ChatActions``, Deprecating ``ChatAction.RECORD_AUDIO`` and ``ChatAction.UPLOAD_AUDIO`` (`#2460`_)
18+
19+
**New Features:**
20+
21+
- Convenience Utilities & Example for Handling ``ChatMemberUpdated`` (`#2490`_)
22+
- ``Filters.forwarded_from`` (`#2446`_)
23+
24+
**Minor changes, CI improvements, Doc fixes and Type hinting:**
25+
26+
- Improve Timeouts in ``ConversationHandler`` (`#2417`_)
27+
- Stabilize CI (`#2480`_)
28+
- Doc Fixes (`#2437`_)
29+
- Improve Type Hints of Data Filters (`#2456`_)
30+
- Add Two ``UserWarnings`` (`#2464`_)
31+
- Improve Code Quality (`#2450`_)
32+
- Update Fallback Test-Bots (`#2451`_)
33+
- Improve Examples (`#2441`_, `#2448`_)
34+
35+
.. _`#2489`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2489
36+
.. _`#2460`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2460
37+
.. _`#2490`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2490
38+
.. _`#2446`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2446
39+
.. _`#2417`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2417
40+
.. _`#2480`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2480
41+
.. _`#2437`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2437
42+
.. _`#2456`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2456
43+
.. _`#2464`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2464
44+
.. _`#2450`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2450
45+
.. _`#2451`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2451
46+
.. _`#2441`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2441
47+
.. _`#2448`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2448
48+
549
Version 13.4.1
650
==============
751
*Released 2021-03-14*

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = '13.4.1' # telegram.__version__[:3]
63+
version = '13.5' # telegram.__version__[:3]
6464
# The full version, including alpha/beta/rc tags.
65-
release = '13.4.1' # telegram.__version__
65+
release = '13.5' # telegram.__version__
6666

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

telegram/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020

2121
from telegram import constants
2222

23-
__version__ = '13.4.1'
23+
__version__ = '13.5'
2424
bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103

0 commit comments

Comments
 (0)