Skip to content

Commit

Permalink
Bump version to v21.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bibo-Joshi committed Apr 15, 2024
1 parent fed8d88 commit 75d946e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@
Changelog
=========

Version 21.1.1
==============

*Released 2024-04-15*

This is the technical changelog for version 21.1.1. More elaborate release notes can be found in the news channel `@pythontelegrambotchannel <https://t.me/pythontelegrambotchannel>`__.

Bug Fixes
---------

- Fix Bug With Parameter ``message_thread_id`` of ``Message.reply_*`` (:pr:`4207` closes :issue:`4205`)

Minor Changes
-------------

- Remove Deprecation Warning in ``JobQueue.run_daily`` (:pr:`4206` by `@Konano <https://github.com/Konano>`__)
- Fix Annotation of ``EncryptedCredentials.decrypted_secret`` (:pr:`4199` by `@marinelay <https://github.com/marinelay>`__ closes :issue:`4198`)


Version 21.1
==============

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.1" # telegram.__version__[:3]
version = "21.1.1" # telegram.__version__[:3]
# The full version, including alpha/beta/rc tags.
release = "21.1" # telegram.__version__
release = "21.1.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=1, micro=0, releaselevel="final", serial=0
major=21, minor=1, micro=1, releaselevel="final", serial=0
)
__version__: Final[str] = str(__version_info__)

Expand Down

0 comments on commit 75d946e

Please sign in to comment.