diff --git a/CHANGES.rst b/CHANGES.rst index 2bd73fdef..9a9f0ac7a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,18 @@ Changelog ========= +Version 13.8.1 +============== +*Released 2021-11-08* + +This is the technical changelog for version 13.8.1. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel `_. + +**Doc fixes:** + +- Add ``ChatJoinRequest(Handler)`` to Docs (`#2771`_) + +.. _`#2771`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2771 + Version 13.8 ============ *Released 2021-11-08* diff --git a/docs/source/conf.py b/docs/source/conf.py index 22d1deb8b..fec854d29 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,9 +60,9 @@ author = u'Leandro Toledo' # built documents. # # The short X.Y version. -version = '13.8' # telegram.__version__[:3] +version = '13.8.1' # telegram.__version__[:3] # The full version, including alpha/beta/rc tags. -release = '13.8' # telegram.__version__ +release = '13.8.1' # 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 64a2fea30..d2d74fdd7 100644 --- a/telegram/version.py +++ b/telegram/version.py @@ -20,5 +20,5 @@ from telegram import constants -__version__ = '13.8' +__version__ = '13.8.1' bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103