mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2025-02-16 18:31:45 +01:00
Bump version to v13.4
This commit is contained in:
parent
7d893fd04b
commit
21ded420e2
3 changed files with 28 additions and 3 deletions
25
CHANGES.rst
25
CHANGES.rst
|
@ -2,6 +2,31 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
Version 13.4
|
||||||
|
============
|
||||||
|
*Released 2021-03-14*
|
||||||
|
|
||||||
|
**Major Changes:**
|
||||||
|
|
||||||
|
- Full support of Bot API 5.1 (`#2424`_)
|
||||||
|
|
||||||
|
**Minor changes, CI improvements, doc fixes and type hinting:**
|
||||||
|
|
||||||
|
- Improve ``Updater.set_webhook`` (`#2419`_)
|
||||||
|
- Doc Fixes (`#2404`_)
|
||||||
|
- Type Hinting Fixes (`#2425`_)
|
||||||
|
- Update ``pre-commit`` Settings (`#2415`_)
|
||||||
|
- Fix Logging for Vendored ``urllib3`` (`#2427`_)
|
||||||
|
- Stabilize Tests (`#2409`_)
|
||||||
|
|
||||||
|
.. _`#2424`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2424
|
||||||
|
.. _`#2419`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2419
|
||||||
|
.. _`#2404`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2404
|
||||||
|
.. _`#2425`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2425
|
||||||
|
.. _`#2415`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2415
|
||||||
|
.. _`#2427`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2427
|
||||||
|
.. _`#2409`: https://github.com/python-telegram-bot/python-telegram-bot/pull/2409
|
||||||
|
|
||||||
Version 13.3
|
Version 13.3
|
||||||
============
|
============
|
||||||
*Released 2021-02-19*
|
*Released 2021-02-19*
|
||||||
|
|
|
@ -61,9 +61,9 @@ author = u'Leandro Toledo'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '13.3' # telegram.__version__[:3]
|
version = '13.4' # telegram.__version__[:3]
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '13.3' # telegram.__version__
|
release = '13.4' # 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.3'
|
__version__ = '13.4'
|
||||||
bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103
|
bot_api_version = constants.BOT_API_VERSION # pylint: disable=C0103
|
||||||
|
|
Loading…
Add table
Reference in a new issue