Compare commits

...

2 Commits

Author SHA1 Message Date
Hinrich Mahler c0716dd344 Bump version to v21.0.1 2024-03-06 22:15:30 +01:00
Bibo-Joshi 668b49b048 Remove docs from Package (#4150) 2024-03-06 22:04:19 +01:00
4 changed files with 17 additions and 4 deletions
+13
View File
@@ -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
============
+2 -2
View File
@@ -20,9 +20,9 @@ author = "Leandro Toledo"
# 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"
+1 -1
View File
@@ -26,7 +26,7 @@ def get_packages_requirements(raw: bool = False) -> Tuple[List[str], List[str]]:
"""Build the package & requirements list for this project"""
reqs = get_requirements()
exclude = ["tests*"]
exclude = ["tests*", "docs*"]
if raw:
exclude.append("telegram.ext*")
+1 -1
View File
@@ -51,7 +51,7 @@ class Version(NamedTuple):
__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__)