Skip to content

Commit e982a5a

Browse files
committed
Bump version to v13.6
1 parent cf4d3ca commit e982a5a

3 files changed

Lines changed: 50 additions & 3 deletions

File tree

CHANGES.rst

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

5+
Version 13.6
6+
============
7+
*Released 2021-06-06*
8+
9+
New Features:
10+
11+
- Arbitrary ``callback_data`` (`#1844`_)
12+
- Add ``ContextTypes`` & ``BasePersistence.refresh_user/chat/bot_data`` (`#2262`_)
13+
- Add ``Filters.attachment`` (`#2528`_)
14+
- Add ``pattern`` Argument to ``ChosenInlineResultHandler`` (`#2517`_)
15+
16+
Major Changes:
17+
18+
- Add ``slots`` (`#2345`_)
19+
20+
Minor changes, CI improvements, Doc fixes and Type hinting:
21+
22+
- Doc Fixes (`#2495`_, `#2510`_)
23+
- Add ``max_connections`` Parameter to ``Updater.start_webhook`` (`#2547`_)
24+
- Fix for ``Promise.done_callback`` (`#2544`_)
25+
- Improve Code Quality (`#2536`_, `#2454`_)
26+
- Increase Test Coverage of ``CallbackQueryHandler`` (`#2520`_)
27+
- Stabilize CI (`#2522`_, `#2537`_, `#2541`_)
28+
- Fix ``send_phone_number_to_provider`` argument for ``Bot.send_invoice`` (`#2527`_)
29+
- Handle Classes as Input for ``BasePersistence.replace/insert_bot`` (`#2523`_)
30+
- Bump Tornado Version and Remove Workaround from `#2067`_ (`#2494`_)
31+
32+
.. _`#1844`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1844
33+
.. _`#2262`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2262
34+
.. _`#2528`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2528
35+
.. _`#2517`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2517
36+
.. _`#2345`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2345
37+
.. _`#2495`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2495
38+
.. _`#2547`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2547
39+
.. _`#2544`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2544
40+
.. _`#2536`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2536
41+
.. _`#2454`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2454
42+
.. _`#2520`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2520
43+
.. _`#2522`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2522
44+
.. _`#2537`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2537
45+
.. _`#2541`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2541
46+
.. _`#2527`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2527
47+
.. _`#2523`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2523
48+
.. _`#2067`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2067
49+
.. _`#2494`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2494
50+
.. _`#2510`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2510
51+
552
Version 13.5
653
============
754
*Released 2021-04-30*

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.5' # telegram.__version__[:3]
63+
version = '13.6' # telegram.__version__[:3]
6464
# The full version, including alpha/beta/rc tags.
65-
release = '13.5' # telegram.__version__
65+
release = '13.6' # 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.5'
23+
__version__ = '13.6'
2424
bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103

0 commit comments

Comments
 (0)