From 680cca8262ab3e8dc00916ec523b9e015db5bc22 Mon Sep 17 00:00:00 2001 From: Hinrich Mahler <22366557+Bibo-Joshi@users.noreply.github.com> Date: Tue, 6 Dec 2022 10:58:30 +0100 Subject: [PATCH] Bump version to v13.15 --- CHANGES.rst | 17 +++++++++++++++++ docs/source/conf.py | 6 +++--- docs/{source => }/substitutions/global.rst | 0 telegram/bot.py | 4 ++-- telegram/version.py | 2 +- 5 files changed, 23 insertions(+), 6 deletions(-) rename docs/{source => }/substitutions/global.rst (100%) diff --git a/CHANGES.rst b/CHANGES.rst index 7b53e1786da..f1d18d6bfd2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,23 @@ Changelog ========= +Version 13.15 +============= +*Released 2022-12-06* + +This is the technical changelog for version 13.15. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel `_. + +**Major Changes:** + +- Full Support for API 6.3 (`#3392`_) + +**Bug Fixes:** + +- Fix Bugs in ``Bot.answer_web_app_query`` (`#3364`_) + +.. _`#3392`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3392 +.. _`#3364`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3364 + Version 13.14 ============= *Released 2022-09-04* diff --git a/docs/source/conf.py b/docs/source/conf.py index 8e59434d65b..614a76e1b8e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -52,7 +52,7 @@ master_doc = 'index' # Global substitutions -rst_prolog = (Path.cwd() / "substitutions/global.rst").read_text(encoding="utf-8") +rst_prolog = (Path.cwd() / "../substitutions/global.rst").read_text(encoding="utf-8") # General information about the project. project = u'python-telegram-bot' @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = '13.14' # telegram.__version__[:3] +version = '13.15' # telegram.__version__[:3] # The full version, including alpha/beta/rc tags. -release = '13.14' # telegram.__version__ +release = '13.15' # telegram.__version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/substitutions/global.rst b/docs/substitutions/global.rst similarity index 100% rename from docs/source/substitutions/global.rst rename to docs/substitutions/global.rst diff --git a/telegram/bot.py b/telegram/bot.py index 276621b8638..fcdf8738ec2 100644 --- a/telegram/bot.py +++ b/telegram/bot.py @@ -5044,7 +5044,7 @@ def create_new_sticker_set( .. versionchanged:: 13.2 Accept :obj:`bytes` as input. - webm_sticker (:obj:`str` | :term:`file object` | :obj:`bytes` | :class:`pathlib.Path`,\ + webm_sticker (:obj:`str` | filelike object | :obj:`bytes` | :class:`pathlib.Path`,\ optional): **WEBM** video with the sticker, uploaded using multipart/form-data. See https://core.telegram.org/stickers#video-sticker-requirements for technical requirements. @@ -5145,7 +5145,7 @@ def add_sticker_to_set( .. versionchanged:: 13.2 Accept :obj:`bytes` as input. - webm_sticker (:obj:`str` | :term:`file object` | :obj:`bytes` | :class:`pathlib.Path`,\ + webm_sticker (:obj:`str` | filelike object | :obj:`bytes` | :class:`pathlib.Path`,\ optional): **WEBM** video with the sticker, uploaded using multipart/form-data. See https://core.telegram.org/stickers#video-sticker-requirements for technical requirements. diff --git a/telegram/version.py b/telegram/version.py index df21c5a0b9d..73d56890615 100644 --- a/telegram/version.py +++ b/telegram/version.py @@ -20,5 +20,5 @@ from telegram import constants -__version__ = '13.14' +__version__ = '13.15' bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103