Skip to content

Commit

Permalink
Bump version to v13.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Bibo-Joshi committed Dec 6, 2022
1 parent d6c6cc2 commit 680cca8
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
17 changes: 17 additions & 0 deletions CHANGES.rst
Expand Up @@ -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*
Expand Down
6 changes: 3 additions & 3 deletions docs/source/conf.py
Expand Up @@ -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'
Expand All @@ -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.
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions telegram/bot.py
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion telegram/version.py
Expand Up @@ -20,5 +20,5 @@

from telegram import constants

__version__ = '13.14'
__version__ = '13.15'
bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103

0 comments on commit 680cca8

Please sign in to comment.