Skip to content

Commit

Permalink
Bump version to v21.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bibo-Joshi committed Mar 6, 2024
1 parent 668b49b commit c0716dd
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@
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
============

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
# built documents.
#
# 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.
release = "21.0" # telegram.__version__
release = "21.0.1" # telegram.__version__

# If your documentation needs a minimal Sphinx version, state it here.
needs_sphinx = "6.1.3"
Expand Down
2 changes: 1 addition & 1 deletion telegram/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __str__(self) -> str:


__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__)

Expand Down

0 comments on commit c0716dd

Please sign in to comment.