From 132a3b203d875db7d4e5fc72ebe1c4e34e6ac6f8 Mon Sep 17 00:00:00 2001 From: Hinrich Mahler <22366557+Bibo-Joshi@users.noreply.github.com> Date: Tue, 28 Jun 2022 19:54:45 +0200 Subject: [PATCH] Bump version to v13.13 --- 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 d2036fd1fee..d176418281c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,18 @@ Changelog ========= +Version 13.13 +============= +*Released 2022-06-28* + +This is the technical changelog for version 13.13. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel `_. + +**Major Changes:** + +- Full Support for API 6.1 (`#3117`_) + +.. _`#3117`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3117 + Version 13.12 ============= *Released 2022-05-26* diff --git a/docs/source/conf.py b/docs/source/conf.py index a6d64a0c180..19cecec9730 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = '13.12' # telegram.__version__[:3] +version = '13.13' # telegram.__version__[:3] # The full version, including alpha/beta/rc tags. -release = '13.12' # telegram.__version__ +release = '13.13' # 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 565d9766973..a003667c6d0 100644 --- a/telegram/version.py +++ b/telegram/version.py @@ -20,5 +20,5 @@ from telegram import constants -__version__ = '13.12' +__version__ = '13.13' bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103