Bump version to v21.0.1

This commit is contained in:
Hinrich Mahler 2024-03-06 22:15:30 +01:00
parent 668b49b048
commit c0716dd344
3 changed files with 16 additions and 3 deletions

View file

@ -4,6 +4,19 @@
Changelog Changelog
========= =========
Version 21.0.1
==============
*Released 2024-03-06*
This is the technical changelog for version 21.0.1. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel <https://t.me/pythontelegrambotchannel>`__.
Bug Fixes
---------
- Remove ``docs`` from Package (:pr:`4150`)
Version 21.0 Version 21.0
============ ============

View file

@ -20,9 +20,9 @@ author = "Leandro Toledo"
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = "21.0" # telegram.__version__[:3] version = "21.0.1" # telegram.__version__[:3]
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = "21.0" # telegram.__version__ release = "21.0.1" # telegram.__version__
# If your documentation needs a minimal Sphinx version, state it here. # If your documentation needs a minimal Sphinx version, state it here.
needs_sphinx = "6.1.3" needs_sphinx = "6.1.3"

View file

@ -51,7 +51,7 @@ class Version(NamedTuple):
__version_info__: Final[Version] = Version( __version_info__: Final[Version] = Version(
major=21, minor=0, micro=0, releaselevel="final", serial=0 major=21, minor=0, micro=1, releaselevel="final", serial=0
) )
__version__: Final[str] = str(__version_info__) __version__: Final[str] = str(__version_info__)