From b818dadbad7e1f70f11a6c384bc032fc413c3b84 Mon Sep 17 00:00:00 2001 From: Hinrich Mahler <22366557+Bibo-Joshi@users.noreply.github.com> Date: Sun, 4 Sep 2022 09:58:25 +0200 Subject: [PATCH] Bump version to v13.14 --- CHANGES.rst | 21 +++++++++++++++++++++ docs/source/conf.py | 4 ++-- telegram/version.py | 2 +- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d176418281c..7b53e1786da 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,27 @@ Changelog ========= +Version 13.14 +============= +*Released 2022-09-04* + +This is the technical changelog for version 13.14. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel `_. + +**Major Changes:** + +- Full Support for API 6.2 (`#3203`_) + +**Minor Changes:** + +- Documentation Improvements (`#3144`_, `#3140`_, `#3164`_) +- Pin `tornado` to Version 6.1 (`#3145`_) + +.. _`#3203`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3203 +.. _`#3144`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3144 +.. _`#3140`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3140 +.. _`#3164`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3164 +.. _`#3145`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3145 + Version 13.13 ============= *Released 2022-06-28* diff --git a/docs/source/conf.py b/docs/source/conf.py index 26e28491c91..a4cf83391c2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = '13.13' # telegram.__version__[:3] +version = '13.14' # telegram.__version__[:3] # The full version, including alpha/beta/rc tags. -release = '13.13' # telegram.__version__ +release = '13.14' # 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 a003667c6d0..df21c5a0b9d 100644 --- a/telegram/version.py +++ b/telegram/version.py @@ -20,5 +20,5 @@ from telegram import constants -__version__ = '13.13' +__version__ = '13.14' bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103