Bump version to v13.11

This commit is contained in:
Hinrich Mahler 2022-05-26 15:15:40 +02:00
parent 0a00a821cb
commit a769861b32
3 changed files with 20 additions and 3 deletions

View file

@ -2,6 +2,23 @@
Changelog
=========
Version 13.12
=============
*Released 2022-05-26*
This is the technical changelog for version 13.12. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel <https://t.me/pythontelegrambotchannel>`_.
**Major Changes:**
- Full Support for API 6.0 (`#3027`_)
**Minor Changes:**
- Documentation Improvements (`#3029`_)
.. _`#3027`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3027
.. _`#3029`: https://github.com/python-telegram-bot/python-telegram-bot/pull/3029
Version 13.11
=============
*Released 2022-02-02*

View file

@ -60,9 +60,9 @@ author = u'Leandro Toledo'
# built documents.
#
# The short X.Y version.
version = '13.11' # telegram.__version__[:3]
version = '13.12' # telegram.__version__[:3]
# The full version, including alpha/beta/rc tags.
release = '13.11' # telegram.__version__
release = '13.12' # telegram.__version__
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

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