mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-12-22 14:35:00 +01:00
Bump version to v13.10
This commit is contained in:
parent
e6d9f3d057
commit
ade1529986
3 changed files with 22 additions and 3 deletions
19
CHANGES.rst
19
CHANGES.rst
|
@ -2,6 +2,25 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
Version 13.10
|
||||||
|
=============
|
||||||
|
*Released 2022-01-03*
|
||||||
|
|
||||||
|
This is the technical changelog for version 13.10. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel <https://t.me/pythontelegrambotchannel>`_.
|
||||||
|
|
||||||
|
**Major Changes:**
|
||||||
|
|
||||||
|
- Full Support for API 5.6 (`#2835`_)
|
||||||
|
|
||||||
|
**Minor Changes & Doc fixes:**
|
||||||
|
|
||||||
|
- Update Copyright to 2022 (`#2836`_)
|
||||||
|
- Update Documentation of ``BotCommand`` (`#2820`_)
|
||||||
|
|
||||||
|
.. _`#2835`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2835
|
||||||
|
.. _`#2836`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2836
|
||||||
|
.. _`#2820`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2820
|
||||||
|
|
||||||
Version 13.9
|
Version 13.9
|
||||||
============
|
============
|
||||||
*Released 2021-12-11*
|
*Released 2021-12-11*
|
||||||
|
|
|
@ -60,9 +60,9 @@ author = u'Leandro Toledo'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '13.9' # telegram.__version__[:3]
|
version = '13.10' # telegram.__version__[:3]
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '13.9' # telegram.__version__
|
release = '13.10' # telegram.__version__
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
|
@ -20,5 +20,5 @@
|
||||||
|
|
||||||
from telegram import constants
|
from telegram import constants
|
||||||
|
|
||||||
__version__ = '13.9'
|
__version__ = '13.10'
|
||||||
bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103
|
bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103
|
||||||
|
|
Loading…
Reference in a new issue