Bump version to v13.15

This commit is contained in:
Hinrich Mahler 2022-12-06 10:58:30 +01:00
parent d6c6cc231e
commit 680cca8262
5 changed files with 23 additions and 6 deletions

View file

@ -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 <https://t.me/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*

View file

@ -52,7 +52,7 @@ source_suffix = '.rst'
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 @@ author = u'Leandro Toledo'
# 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.

View file

@ -5044,7 +5044,7 @@ class Bot(TelegramObject):
.. 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 @@ class Bot(TelegramObject):
.. 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.

View file

@ -20,5 +20,5 @@
from telegram import constants
__version__ = '13.14'
__version__ = '13.15'
bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103