From 92cb6f3ae8d5c3e49b9019a9348d4408135ffc95 Mon Sep 17 00:00:00 2001 From: Hinrich Mahler <22366557+Bibo-Joshi@users.noreply.github.com> Date: Wed, 2 Feb 2022 21:16:36 +0100 Subject: [PATCH] Bump version to v13.11 --- CHANGES.rst | 12 ++++++++++++ docs/source/conf.py | 4 ++-- telegram/version.py | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 10b1c8708..32436cc76 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,18 @@ Changelog ========= +Version 13.11 +============= +*Released 2022-02-02* + +This is the technical changelog for version 13.11. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel `_. + +**Major Changes:** + +- Full Support for Bot API 5.7 (`#2881`_) + +.. _`#2881`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2881 + Version 13.10 ============= *Released 2022-01-03* diff --git a/docs/source/conf.py b/docs/source/conf.py index cfedc81e3..02e53b031 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,9 +60,9 @@ author = u'Leandro Toledo' # built documents. # # The short X.Y version. -version = '13.10' # telegram.__version__[:3] +version = '13.11' # telegram.__version__[:3] # The full version, including alpha/beta/rc tags. -release = '13.10' # telegram.__version__ +release = '13.11' # telegram.__version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/telegram/version.py b/telegram/version.py index 43bc5618e..f831eee6a 100644 --- a/telegram/version.py +++ b/telegram/version.py @@ -20,5 +20,5 @@ from telegram import constants -__version__ = '13.10' +__version__ = '13.11' bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103